This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from abf3964711f tree-optimization/115868 - ICE with .MASK_CALL in simdclone new 7d73c01ce6d diagnostics: add highlight-a vs highlight-b in colorization [...]
The 1 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-common.cc | 17 +- gcc/c-family/c-common.h | 6 +- gcc/c-family/c-format.cc | 229 +++++++++++++++------ gcc/c-family/c-format.h | 1 + gcc/c-family/c-type-mismatch.cc | 10 +- gcc/c-family/c-type-mismatch.h | 3 +- gcc/c/c-objc-common.cc | 30 ++- gcc/c/c-typeck.cc | 46 +++-- gcc/common.opt | 4 + gcc/common.opt.urls | 3 + gcc/coretypes.h | 2 + gcc/cp/call.cc | 75 +++++-- gcc/cp/cp-tree.h | 13 +- gcc/cp/error.cc | 107 +++++++--- gcc/cp/typeck.cc | 20 +- gcc/diagnostic-color.cc | 4 +- gcc/diagnostic-format-json.cc | 1 + gcc/diagnostic-format-sarif.cc | 1 + gcc/diagnostic-highlight-colors.h | 56 +++++ gcc/diagnostic-path.cc | 2 +- gcc/diagnostic-show-locus.cc | 58 ++++-- gcc/diagnostic.h | 4 + gcc/doc/invoke.texi | 51 ++++- gcc/doc/ux.texi | 87 ++++++++ gcc/gcc-rich-location.cc | 12 +- gcc/gcc-rich-location.h | 20 +- gcc/gcc.cc | 4 + gcc/lto-wrapper.cc | 7 + gcc/opts-common.cc | 2 + gcc/opts-global.cc | 5 + gcc/opts.cc | 5 + gcc/pretty-print-markup.h | 75 +++++++ gcc/pretty-print.cc | 113 ++++++++++ gcc/pretty-print.h | 18 ++ gcc/substring-locations.cc | 21 +- gcc/substring-locations.h | 3 + .../diagnostic/bad-binary-ops-highlight-colors.C | 34 +++ .../bad-binary-ops-no-highlight-colors.C | 29 +++ gcc/testsuite/g++.dg/plugin/plugin.exp | 1 + .../plugin/show-template-tree-color-labels.C | 20 +- .../show-template-tree-color-no-elide-type.C | 8 +- ...show-template-tree-color-no-highlight-colors.C} | 6 +- .../g++.dg/plugin/show-template-tree-color.C | 8 +- .../warn/Wformat-gcc_diag-1.C} | 16 +- gcc/testsuite/g++.dg/warn/Wformat-gcc_diag-2.C | 52 +++++ gcc/testsuite/g++.dg/warn/Wformat-gcc_diag-3.C | 54 +++++ .../gcc.dg/bad-binary-ops-highlight-colors.c | 35 ++++ .../gcc.dg/bad-binary-ops-no-highlight-colors.c | 30 +++ gcc/testsuite/gcc.dg/format/colors.c | 27 +++ .../gcc.dg/plugin/diagnostic_plugin_show_trees.c | 2 +- gcc/toplev.cc | 2 + gcc/tree-pretty-print-markup.h | 84 ++++++++ libcpp/include/rich-location.h | 14 +- libcpp/line-map.cc | 29 ++- 54 files changed, 1364 insertions(+), 202 deletions(-) create mode 100644 gcc/diagnostic-highlight-colors.h create mode 100644 gcc/pretty-print-markup.h create mode 100644 gcc/testsuite/g++.dg/diagnostic/bad-binary-ops-highlight-colors.C create mode 100644 gcc/testsuite/g++.dg/diagnostic/bad-binary-ops-no-highlight-colors.C copy gcc/testsuite/g++.dg/plugin/{show-template-tree-color.C => show-template-tree [...] copy gcc/testsuite/{gcc.dg/format/gcc_diag-10.c => g++.dg/warn/Wformat-gcc_diag-1. [...] create mode 100644 gcc/testsuite/g++.dg/warn/Wformat-gcc_diag-2.C create mode 100644 gcc/testsuite/g++.dg/warn/Wformat-gcc_diag-3.C create mode 100644 gcc/testsuite/gcc.dg/bad-binary-ops-highlight-colors.c create mode 100644 gcc/testsuite/gcc.dg/bad-binary-ops-no-highlight-colors.c create mode 100644 gcc/testsuite/gcc.dg/format/colors.c create mode 100644 gcc/tree-pretty-print-markup.h