This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from 450ad5d43f1 testsuite: Require int32plus target for gcc.dg/pr117816.c new e55cfebd001 diagnostics: implement file_cache::dump new ea7da640cf2 diagnostics: move libgdiagnostics dc from sinks into diagno [...] new 778336e0e4f sarif-replay: quote source from artifact contents [PR117943] new 2af54192078 libgdiagnostics: consolidate logical locations new 7f4f49687b1 sarif-replay: handle embedded links (§3.11.6)
The 5 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/c-family/c-format.cc | 4 +- gcc/c-family/c-opts.cc | 1 + gcc/cp/error.cc | 8 +- gcc/diagnostic-format-text.cc | 6 +- gcc/diagnostic-format-text.h | 15 + gcc/diagnostic-path.cc | 8 +- gcc/diagnostic-show-locus.cc | 20 +- gcc/diagnostic.cc | 30 +- gcc/diagnostic.h | 8 +- .../libgdiagnostics/topics/logical-locations.rst | 6 + .../libgdiagnostics/topics/physical-locations.rst | 6 +- .../tutorial/02-physical-locations.rst | 2 +- gcc/fortran/error.cc | 4 +- gcc/input.cc | 141 ++++++- gcc/input.h | 7 + gcc/libgdiagnostics++.h | 16 +- gcc/libgdiagnostics.cc | 413 ++++++++++++--------- gcc/libgdiagnostics.h | 13 +- gcc/libgdiagnostics.map | 1 + gcc/libsarifreplay.cc | 165 +++++++- .../plugin/diagnostic_plugin_test_show_locus.cc | 1 + .../plugin/diagnostic_plugin_xhtml_format.cc | 3 +- .../gcc.dg/plugin/expensive_selftests_plugin.cc | 3 +- .../libgdiagnostics.dg/test-logical-location.c | 13 + .../2.1.0-valid/3.11.6-embedded-links.sarif | 25 ++ .../2.1.0-valid/error-with-note.sarif | 5 +- .../2.1.0-valid/malloc-vs-local-4.c.sarif | 401 ++++++++++++++++++++ .../{signal-1.c.sarif => signal-1.c.moved.sarif} | 72 ++-- .../sarif-replay.dg/2.1.0-valid/signal-1.c.sarif | 46 ++- .../2.1.0-valid/spec-example-4.sarif | 13 +- 30 files changed, 1195 insertions(+), 261 deletions(-) create mode 100644 gcc/testsuite/sarif-replay.dg/2.1.0-valid/3.11.6-embedded-links.sarif create mode 100644 gcc/testsuite/sarif-replay.dg/2.1.0-valid/malloc-vs-local-4.c.sarif copy gcc/testsuite/sarif-replay.dg/2.1.0-valid/{signal-1.c.sarif => signal-1.c.mov [...]