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-aarch64-next-allnoconfig in repository toolchain/ci/gcc.
from aa3d4957976 Daily bump. adds 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 new 0c141fc4b98 Split i386.c. new 1c073ad2707 Split part of functionality from lto.c to lto-common.c. new b340d73fc16 Add lto-dump tool. new 19bf75f8bc0 Fix GNU coding style in lto-common.c. new f302e00c70a Error only when a non-default -mabi is used with sanitizers [...] new a04bdfe6be9 2019-05-06 Richard Biener rguenther@suse.de
The 6 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 | 44 + gcc/DATESTAMP | 2 +- gcc/Makefile.in | 2 +- gcc/cgraph.h | 6 + gcc/config.gcc | 6 +- 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/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 | 24 + gcc/testsuite/gcc.dg/asan/pr87930.c | 2 +- gcc/testsuite/gcc.dg/pr87314-1.c | 4 +- gcc/testsuite/gcc.dg/tree-ssa/pr37508.c | 6 +- gcc/testsuite/gcc.dg/tree-ssa/pr88676-2.c | 30 + gcc/testsuite/gcc.dg/tsan/pr88017.c | 2 +- gcc/testsuite/gfortran.dg/pr90344.f90 | 25 + gcc/tree-ssa-phiopt.c | 2 +- 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 +- 50 files changed, 47773 insertions(+), 49658 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/tree-ssa/pr88676-2.c create mode 100644 gcc/testsuite/gfortran.dg/pr90344.f90