This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from 79280f4 * dwarf2out.c (scompare_loc_descriptor): Use SCALAR_INT_MODE [...] new 8469aec C FE: suggest corrections for misspelled identifiers and type names new e557fc7 libcpp: Tweak to missing #include source location
The 2 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: gcc/ChangeLog | 11 ++ gcc/c-family/ChangeLog | 6 + gcc/c-family/c-common.h | 9 ++ gcc/c/ChangeLog | 26 ++++ gcc/c/c-decl.c | 190 ++++++++++++++++++++++++- gcc/c/c-parser.c | 144 +++++++++++++------ gcc/c/c-tree.h | 1 + gcc/diagnostic-core.h | 2 + gcc/diagnostic.c | 12 ++ gcc/spellcheck.h | 22 ++- gcc/testsuite/ChangeLog | 19 +++ gcc/testsuite/c-c++-common/attributes-1.c | 2 +- gcc/testsuite/c-c++-common/missing-header-1.c | 8 ++ gcc/testsuite/c-c++-common/missing-header-2.c | 8 ++ gcc/testsuite/c-c++-common/missing-header-3.c | 8 ++ gcc/testsuite/c-c++-common/missing-header-4.c | 8 ++ gcc/testsuite/gcc.dg/diagnostic-token-ranges.c | 3 +- gcc/testsuite/gcc.dg/pr67580.c | 18 +-- gcc/testsuite/gcc.dg/spellcheck-identifiers.c | 136 ++++++++++++++++++ gcc/testsuite/gcc.dg/spellcheck-typenames.c | 107 ++++++++++++++ libcpp/ChangeLog | 40 ++++++ libcpp/directives.c | 2 +- libcpp/errors.c | 52 +++++-- libcpp/files.c | 105 ++++++++------ libcpp/include/cpplib.h | 7 +- libcpp/init.c | 7 +- libcpp/internal.h | 7 +- 27 files changed, 834 insertions(+), 126 deletions(-) create mode 100644 gcc/testsuite/c-c++-common/missing-header-1.c create mode 100644 gcc/testsuite/c-c++-common/missing-header-2.c create mode 100644 gcc/testsuite/c-c++-common/missing-header-3.c create mode 100644 gcc/testsuite/c-c++-common/missing-header-4.c create mode 100644 gcc/testsuite/gcc.dg/spellcheck-identifiers.c create mode 100644 gcc/testsuite/gcc.dg/spellcheck-typenames.c