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-lts-defconfig in repository toolchain/ci/gcc.
from d408e6b2f50 @signbit<mode>2_dm adds 3fcb6ed9d91 Daily bump. adds b869835b49d compiler: refactoring in Export class to encapsulate ty [...] adds 045c5a74848 Fix libstdc++ install-pdf support. adds dddb1553ce6 mklog/91048: Open ~/.mklog in string mode. adds 712c60296c3 2019-07-02 Richard Biener rguenther@suse.de adds f188714f055 * lto-common.c (lto_register_canonical_types_for_odr_types [...] adds ab3d46cc106 [arm/AArch64] Assume unhandled NEON types are neon_arith_ba [...] adds 7c7e35d24d9 * tree-inline.c (remap_gimple_stmt): Do not subtitute hand [...] adds dc2ef903670 * tree-ssa-alias.c (nonoverlapping_component_refs_for_decl [...] adds db6c512daf3 * tree-ssa-alias.c (aliasing_component_refs_p): Remove for [...] adds 955e61aba25 2019-07-02 Richard Biener rguenther@suse.de adds 28cf2b462be * cfgexpand.c (pass_expand::execute): Deal specially with [...] adds 357d109c33a * cfgrtl.c (commit_edge_insertions): Rebuild jump labels chain. adds 9774e99ebd1 Fix preprocessor checks for Clang builtins adds 8a529f7e4ee Fix amdgcn regrename ICE. adds ff6892fe5ae * config/i386/mmx.md (mmx_pack<s_trunsuffix>swb): Use TAR [...] adds 07ccb2ee106 compiler: use builtin memset for non-pointer memclr adds 2c958f98d8b 2019-07-02 Aaron Sawdey acsawdey@linux.ibm.com adds 89d2d652237 [PATCH, Ada, Darwin, PPC] PPC Darwin has stack check probes. adds 6688c48bbf4 PR preprocessor/90581 Add a cpp option -fmax-include-depth [...]
No new revisions were added by this update.
Summary of changes: contrib/ChangeLog | 5 + contrib/mklog | 2 +- gcc/ChangeLog | 102 ++++++++ gcc/DATESTAMP | 2 +- gcc/ada/ChangeLog | 5 + gcc/ada/libgnat/system-darwin-ppc.ads | 2 +- gcc/c-family/ChangeLog | 6 + gcc/c-family/c-opts.c | 4 + gcc/c-family/c.opt | 4 + gcc/cfgexpand.c | 40 ++-- gcc/cfgrtl.c | 9 +- gcc/config/arm/cortex-a57.md | 7 +- gcc/config/gcn/gcn.md | 34 ++- gcc/config/i386/mmx.md | 30 ++- gcc/config/i386/sse.md | 15 +- gcc/doc/cppopts.texi | 4 + gcc/doc/invoke.texi | 1 + gcc/doc/md.texi | 36 +++ gcc/go/ChangeLog | 4 + gcc/go/go-gcc.cc | 9 + gcc/go/gofrontend/MERGE | 2 +- gcc/go/gofrontend/export.cc | 51 ++-- gcc/go/gofrontend/export.h | 4 + gcc/go/gofrontend/expressions.cc | 14 +- gcc/go/gofrontend/runtime.def | 8 +- gcc/go/gofrontend/statements.cc | 18 +- gcc/lto/ChangeLog | 5 + gcc/lto/lto-common.c | 13 +- gcc/optabs.def | 1 + gcc/testsuite/ChangeLog | 20 ++ .../c-c++-common/cpp/fmax-include-depth-1a.h | 1 + .../c-c++-common/cpp/fmax-include-depth-1b.h | 1 + .../c-c++-common/cpp/fmax-include-depth.c | 4 + gcc/testsuite/g++.dg/lto/pr90990_0.C | 31 +++ .../gcc.dg/tree-ssa/alias-access-path-7.c | 20 ++ gcc/testsuite/gcc.dg/tree-ssa/ssa-dom-cse-8.c | 15 ++ gcc/tree-chrec.h | 11 +- gcc/tree-core.h | 3 + gcc/tree-inline.c | 12 + gcc/tree-scalar-evolution.c | 34 --- gcc/tree-ssa-alias.c | 257 +++++++++++++-------- gcc/tree-ssa-scopedtables.c | 11 +- gcc/tree-streamer.c | 3 + gcc/tree.c | 6 + gcc/tree.h | 5 + libcpp/ChangeLog | 10 + libcpp/directives.c | 9 +- libcpp/include/cpplib.h | 3 + libcpp/init.c | 1 + libcpp/internal.h | 4 - libstdc++-v3/ChangeLog | 12 + libstdc++-v3/configure | 21 +- libstdc++-v3/configure.ac | 4 + libstdc++-v3/include/bits/c++config | 6 +- 54 files changed, 695 insertions(+), 246 deletions(-) create mode 100644 gcc/testsuite/c-c++-common/cpp/fmax-include-depth-1a.h create mode 100644 gcc/testsuite/c-c++-common/cpp/fmax-include-depth-1b.h create mode 100644 gcc/testsuite/c-c++-common/cpp/fmax-include-depth.c create mode 100644 gcc/testsuite/g++.dg/lto/pr90990_0.C create mode 100644 gcc/testsuite/gcc.dg/tree-ssa/alias-access-path-7.c create mode 100644 gcc/testsuite/gcc.dg/tree-ssa/ssa-dom-cse-8.c