This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from 906dd61 Fix PR tree-optimization/72810 new d4166bd On-demand locations within string-literals new ea034e2 gcc/cp/ChangeLog:
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 | 58 + gcc/c-family/ChangeLog | 14 + gcc/c-family/c-common.c | 62 + gcc/c-family/c-common.h | 29 + gcc/c-family/c-lex.c | 24 +- gcc/c-family/c-opts.c | 3 + gcc/cp/ChangeLog | 9 + gcc/cp/constexpr.c | 22 +- gcc/input.c | 1547 ++++++++++++++++++++ gcc/input.h | 35 + gcc/{backend.h => substring-locations.h} | 27 +- gcc/testsuite/ChangeLog | 19 + gcc/testsuite/g++.dg/cpp0x/constexpr-50060.C | 2 +- gcc/testsuite/g++.dg/cpp0x/constexpr-cast.C | 2 +- gcc/testsuite/g++.dg/cpp0x/static_assert3.C | 2 +- gcc/testsuite/g++.dg/cpp1y/constexpr-throw.C | 8 +- gcc/testsuite/g++.dg/template/nontype3.C | 4 +- gcc/testsuite/g++.dg/warn/overflow-warn-1.C | 2 +- gcc/testsuite/g++.dg/warn/overflow-warn-3.C | 4 +- gcc/testsuite/g++.dg/warn/overflow-warn-4.C | 4 +- .../plugin/diagnostic-test-string-literals-1.c | 211 +++ .../plugin/diagnostic-test-string-literals-2.c | 53 + .../diagnostic_plugin_test_string_literals.c | 212 +++ gcc/testsuite/gcc.dg/plugin/plugin.exp | 3 + libcpp/ChangeLog | 46 + libcpp/charset.c | 432 +++++- libcpp/include/cpplib.h | 51 + libcpp/internal.h | 4 +- libcpp/lex.c | 2 +- 29 files changed, 2794 insertions(+), 97 deletions(-) copy gcc/{backend.h => substring-locations.h} (58%) create mode 100644 gcc/testsuite/gcc.dg/plugin/diagnostic-test-string-literals-1.c create mode 100644 gcc/testsuite/gcc.dg/plugin/diagnostic-test-string-literals-2.c create mode 100644 gcc/testsuite/gcc.dg/plugin/diagnostic_plugin_test_string_literals.c