This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from c081cec2ff7 PR tree-optimization/90838 * tree-ssa-forwprop.c (simplif [...] new 4f8fe6cd277 PR tree-optimization/93210 * fold-const.h (native_encode_ [...] new ffd6c384cbf Add diagnostic paths
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 | 98 +++ gcc/Makefile.in | 1 + gcc/c-family/ChangeLog | 7 + gcc/c-family/c-format.c | 7 + gcc/c-family/c-format.h | 1 + gcc/common.opt | 20 + gcc/coretypes.h | 1 + gcc/diagnostic-color.c | 3 +- gcc/diagnostic-event-id.h | 61 ++ gcc/diagnostic-format-json.cc | 10 +- gcc/diagnostic-path.h | 149 ++++ gcc/diagnostic-show-locus.c | 28 +- gcc/diagnostic.c | 126 ++++ gcc/diagnostic.def | 5 + gcc/diagnostic.h | 30 + gcc/doc/invoke.texi | 165 ++++- gcc/dwarf2out.c | 146 +--- gcc/fold-const.c | 219 +++++- gcc/fold-const.h | 3 + gcc/gcc-rich-location.h | 4 +- gcc/gimple-fold.c | 36 +- gcc/opts.c | 8 + gcc/pretty-print.c | 32 + gcc/selftest-run-tests.c | 1 + gcc/selftest.h | 1 + gcc/testsuite/ChangeLog | 23 + gcc/testsuite/g++.dg/opt/pr93210.C | 37 + gcc/testsuite/gcc.dg/format/gcc_diag-10.c | 6 +- .../gcc.dg/plugin/diagnostic-path-format-default.c | 142 ++++ .../diagnostic-path-format-inline-events-1.c | 142 ++++ .../diagnostic-path-format-inline-events-2.c | 154 ++++ .../diagnostic-path-format-inline-events-3.c | 154 ++++ .../gcc.dg/plugin/diagnostic-path-format-none.c | 43 ++ .../diagnostic-path-format-separate-events.c | 44 ++ .../gcc.dg/plugin/diagnostic-test-paths-1.c | 38 + .../gcc.dg/plugin/diagnostic-test-paths-2.c | 56 ++ .../gcc.dg/plugin/diagnostic-test-paths-3.c | 38 + .../gcc.dg/plugin/diagnostic-test-paths-4.c | 84 +++ .../gcc.dg/plugin/diagnostic_plugin_test_paths.c | 460 ++++++++++++ gcc/testsuite/gcc.dg/plugin/plugin.exp | 11 + gcc/testsuite/gcc.dg/pr93210.c | 66 ++ gcc/toplev.c | 4 + gcc/tree-diagnostic-path.cc | 820 +++++++++++++++++++++ gcc/tree-diagnostic.c | 12 +- gcc/tree-diagnostic.h | 8 + libcpp/ChangeLog | 8 + libcpp/include/line-map.h | 7 + libcpp/line-map.c | 3 +- 48 files changed, 3348 insertions(+), 174 deletions(-) create mode 100644 gcc/diagnostic-event-id.h create mode 100644 gcc/diagnostic-path.h create mode 100644 gcc/testsuite/g++.dg/opt/pr93210.C create mode 100644 gcc/testsuite/gcc.dg/plugin/diagnostic-path-format-default.c create mode 100644 gcc/testsuite/gcc.dg/plugin/diagnostic-path-format-inline-events-1.c create mode 100644 gcc/testsuite/gcc.dg/plugin/diagnostic-path-format-inline-events-2.c create mode 100644 gcc/testsuite/gcc.dg/plugin/diagnostic-path-format-inline-events-3.c create mode 100644 gcc/testsuite/gcc.dg/plugin/diagnostic-path-format-none.c create mode 100644 gcc/testsuite/gcc.dg/plugin/diagnostic-path-format-separate-events.c create mode 100644 gcc/testsuite/gcc.dg/plugin/diagnostic-test-paths-1.c create mode 100644 gcc/testsuite/gcc.dg/plugin/diagnostic-test-paths-2.c create mode 100644 gcc/testsuite/gcc.dg/plugin/diagnostic-test-paths-3.c create mode 100644 gcc/testsuite/gcc.dg/plugin/diagnostic-test-paths-4.c create mode 100644 gcc/testsuite/gcc.dg/plugin/diagnostic_plugin_test_paths.c create mode 100644 gcc/testsuite/gcc.dg/pr93210.c create mode 100644 gcc/tree-diagnostic-path.cc