This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from 88dd4ef66c9 Add Boris Kolpackov boris@codesynthesis.com to MAINTAINERS new dfd23757584 [arm] Fix gcc.target/arm/xor-and.c new c2c872f2e51 Small retpoline clean-up. new 859b51f8366 Add ability to remap file names in __FILE__, etc (PR other/70268)
The 3 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 | 39 +++++- gcc/Makefile.in | 5 +- gcc/builtins.c | 7 ++ gcc/c-family/ChangeLog | 16 ++- gcc/c-family/c-lex.c | 2 + gcc/c-family/c-opts.c | 5 + gcc/c-family/c-ppoutput.c | 2 + gcc/c-family/c.opt | 4 + gcc/common.opt | 6 +- gcc/config/i386/i386.c | 5 +- gcc/dbxout.c | 1 + gcc/debug.h | 3 - gcc/doc/cppopts.texi | 12 +- gcc/doc/invoke.texi | 34 ++++-- gcc/dwarf2out.c | 3 + gcc/file-prefix-map.c | 132 +++++++++++++++++++++ .../common-target-def.h => file-prefix-map.h} | 18 ++- gcc/final.c | 72 +---------- gcc/opts-global.c | 5 + gcc/opts.c | 1 + gcc/testsuite/ChangeLog | 25 ++++ gcc/testsuite/c-c++-common/cpp/ffile-prefix-map.c | 5 + gcc/testsuite/c-c++-common/cpp/fmacro-prefix-map.c | 5 + gcc/testsuite/c-c++-common/ffile-prefix-map.c | 12 ++ gcc/testsuite/c-c++-common/fmacro-prefix-map.c | 12 ++ gcc/testsuite/gcc.target/arm/xor-and.c | 2 +- gcc/testsuite/gcc.target/i386/indirect-thunk-3.c | 2 +- gcc/testsuite/gcc.target/i386/indirect-thunk-4.c | 2 +- gcc/testsuite/gcc.target/i386/indirect-thunk-6.c | 2 +- .../gcc.target/i386/indirect-thunk-bnd-4.c | 2 +- gcc/testsuite/gcc.target/i386/ret-thunk-10.c | 2 +- gcc/testsuite/gcc.target/i386/ret-thunk-11.c | 2 +- gcc/testsuite/gcc.target/i386/ret-thunk-12.c | 2 +- gcc/testsuite/gcc.target/i386/ret-thunk-15.c | 2 +- gcc/testsuite/gcc.target/i386/ret-thunk-9.c | 2 +- gcc/varasm.c | 1 + gcc/vmsdbgout.c | 1 + gcc/xcoffout.c | 1 + libcpp/ChangeLog | 15 ++- libcpp/include/cpplib.h | 4 + libcpp/macro.c | 2 + 41 files changed, 363 insertions(+), 112 deletions(-) create mode 100644 gcc/file-prefix-map.c copy gcc/{common/common-target-def.h => file-prefix-map.h} (59%) create mode 100644 gcc/testsuite/c-c++-common/cpp/ffile-prefix-map.c create mode 100644 gcc/testsuite/c-c++-common/cpp/fmacro-prefix-map.c create mode 100644 gcc/testsuite/c-c++-common/ffile-prefix-map.c create mode 100644 gcc/testsuite/c-c++-common/fmacro-prefix-map.c