This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_kernel/gnu-master-arm-stable-allnoconfig in repository toolchain/ci/gcc.
from 81bd3157487 2019-05-05 Thomas Koenig tkoenig@gcc.gnu.org adds 29e32afe16c Daily bump. adds 3eec8b67a8f 2019-05-06 François Dumont fdumont@gcc.gnu.org adds 89327354e33 Fix a typo in two_value_replacement function adds 0c141fc4b98 Split i386.c. adds 1c073ad2707 Split part of functionality from lto.c to lto-common.c. adds b340d73fc16 Add lto-dump tool. adds 19bf75f8bc0 Fix GNU coding style in lto-common.c. adds f302e00c70a Error only when a non-default -mabi is used with sanitizers [...] adds a04bdfe6be9 2019-05-06 Richard Biener rguenther@suse.de adds 75a3472e37d Clean up libgomp GCC 5 legacy support adds b19a0dbbe13 2019-05-06 Richard Biener rguenther@suse.de adds 09b1ae8f9f9 2019-05-06 Richard Biener rguenther@suse.de adds 3d7617fe8aa [libcpp] struct deps renaming adds 1b4e65841f2 2019-05-06 Richard Biener rguenther@suse.de adds a25484b01bc 2019-05-06 Richard Biener rguenther@suse.de new 8f7b927d346 This reverts commit r270894, as new testcase fails on arm a [...] new 1000ef62590 2019-05-06 Richard Biener rguenther@suse.de new dfc6c66c769 Append to target_gtfiles in order to fix Darwin bootstrap.
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 | 80 + gcc/DATESTAMP | 2 +- gcc/Makefile.in | 2 +- gcc/c-family/ChangeLog | 4 + gcc/c-family/c-opts.c | 7 +- gcc/cgraph.h | 6 + gcc/config.gcc | 14 +- gcc/config/i386/i386-builtins.c | 2539 + gcc/config/i386/i386-builtins.h | 330 + gcc/config/i386/i386-expand.c | 19840 ++++++ gcc/config/i386/i386-expand.h | 58 + gcc/config/i386/i386-features.c | 2742 + gcc/config/i386/i386-features.h | 201 + gcc/config/i386/i386-options.c | 3693 ++ gcc/config/i386/i386-options.h | 95 + gcc/config/i386/i386.c | 63106 +++++-------------- gcc/config/i386/i386.h | 9 + gcc/config/i386/t-i386 | 16 + gcc/doc/gcc.texi | 5 + gcc/doc/lto-dump.texi | 131 + gcc/dumpfile.c | 85 +- gcc/dumpfile.h | 5 + gcc/dwarf2out.c | 2 +- gcc/graphite-scop-detection.c | 6 +- gcc/lto/ChangeLog | 30 + gcc/lto/Make-lang.in | 22 +- gcc/lto/config-lang.in | 4 +- gcc/lto/lang.opt | 62 + gcc/lto/{lto.c => lto-common.c} | 873 +- gcc/lto/lto-common.h | 33 + gcc/lto/lto-dump.c | 344 + gcc/lto/lto-lang.c | 7 +- gcc/lto/lto.c | 2869 +- gcc/lto/lto.h | 2 + gcc/symtab.c | 17 + gcc/testsuite/ChangeLog | 28 + gcc/testsuite/gcc.dg/asan/pr87930.c | 2 +- gcc/testsuite/gcc.dg/pr87314-1.c | 4 +- gcc/testsuite/gcc.dg/torture/pr90328.c | 24 + gcc/testsuite/gcc.dg/tsan/pr88017.c | 2 +- gcc/testsuite/gcc.target/i386/pr88828-0.c | 27 + gcc/testsuite/gcc.target/i386/pr90358.c | 35 + gcc/tree-data-ref.c | 9 +- gcc/tree-data-ref.h | 2 +- gcc/tree-ssa-alias.c | 59 +- gcc/tree-ssa-forwprop.c | 159 +- gcc/tree-vect-stmts.c | 4 +- libcpp/ChangeLog | 8 + libcpp/directives.c | 2 +- libcpp/include/cpplib.h | 2 +- libcpp/include/mkdeps.h | 22 +- libcpp/internal.h | 2 +- libcpp/mkdeps.c | 26 +- libgomp/ChangeLog | 4 + libgomp/oacc-parallel.c | 6 +- libstdc++-v3/ChangeLog | 18 + libstdc++-v3/python/libstdcxx/v6/printers.py | 5 + libstdc++-v3/testsuite/lib/gdb-test.exp | 25 +- .../testsuite/libstdc++-prettyprinters/80276.cc | 8 +- .../testsuite/libstdc++-prettyprinters/cxx11.cc | 40 +- .../testsuite/libstdc++-prettyprinters/cxx17.cc | 4 +- .../libstdc++-prettyprinters/libfundts.cc | 4 +- .../testsuite/libstdc++-prettyprinters/simple.cc | 16 +- .../testsuite/libstdc++-prettyprinters/simple11.cc | 14 +- .../testsuite/libstdc++-prettyprinters/whatis.cc | 12 +- .../testsuite/libstdc++-prettyprinters/whatis2.cc | 12 +- 66 files changed, 48035 insertions(+), 49791 deletions(-) create mode 100644 gcc/config/i386/i386-builtins.c create mode 100644 gcc/config/i386/i386-builtins.h create mode 100644 gcc/config/i386/i386-expand.c create mode 100644 gcc/config/i386/i386-expand.h create mode 100644 gcc/config/i386/i386-features.c create mode 100644 gcc/config/i386/i386-features.h create mode 100644 gcc/config/i386/i386-options.c create mode 100644 gcc/config/i386/i386-options.h create mode 100644 gcc/doc/lto-dump.texi copy gcc/lto/{lto.c => lto-common.c} (78%) create mode 100644 gcc/lto/lto-common.h create mode 100644 gcc/lto/lto-dump.c create mode 100644 gcc/testsuite/gcc.dg/torture/pr90328.c create mode 100644 gcc/testsuite/gcc.target/i386/pr88828-0.c create mode 100644 gcc/testsuite/gcc.target/i386/pr90358.c