This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_bmk_tk1/llvm-release-arm-spec2k6-O3 in repository toolchain/ci/gcc.
from 7f842453660 libstdc++: Avoid errors in allocator's noexcept-specifier ( [...] adds e71b6bcd222 Daily bump. adds 5371ab20759 changelog: Fix up changelogs for commit 8c18220564 adds fc0256c1fc4 Daily bump. adds 586896484dd Daily bump. adds fe6f6d44d9a Daily bump. adds 1eaa4c2f858 Daily bump. adds ad67f1e77c9 Fix description of FINDLOC result. adds 5353d0ba23f Daily bump. adds 32f34977d60 PR fortran/96890 - Wrong answer with intrinsic IALL adds c1705825949 Daily bump. adds 3bad57d476f Fix uninitialized variable with nested variant record types adds 10f5c90ea56 Daily bump. adds 0679082b1db Adjust email address adds b3a51b99dbb Fix crash on array component with nonstandard index type adds 6d06c17e9f4 libstdc++: Fix is_trivially_constructible (PR 94033) adds 1102a2c1fd2 tree-optimization/95717 - fix SSA update for vectorizer epilogue adds 5024ea60b74 tree-optimization/95133 - avoid abnormal edges in path splitting adds 0c7ae564f42 tree-optimization/95049 - fix not terminating RPO VN iteration adds 95a8572ce7b middle-end/94964 - avoid EH loop entry with CP_SIMPLE_PREHEADERS adds 0bcf016768f ipa/94947 - fix test for externally visible variables for IPA PTA adds 7cfb86a2a18 ipa/94947 - avoid using externally_visible_p () adds d8eb8abfb8c Daily bump. adds f71ca5cab1b Daily bump. adds 3c035affb6f Daily bump.
No new revisions were added by this update.
Summary of changes: gcc/ChangeLog | 60 ++++++++++++++++++++- gcc/DATESTAMP | 2 +- gcc/ada/ChangeLog | 14 ++++- gcc/ada/gcc-interface/decl.c | 26 +++++---- gcc/cfgloopmanip.c | 5 +- gcc/fortran/ChangeLog | 7 +++ gcc/fortran/intrinsic.texi | 3 +- gcc/gimple-ssa-split-paths.c | 10 +++- gcc/testsuite/ChangeLog | 62 ++++++++++++++++++++-- gcc/testsuite/g++.dg/torture/pr95717.C | 12 +++++ gcc/testsuite/gcc.dg/pr95133.c | 14 +++++ gcc/testsuite/gcc.dg/torture/pr94947-1.c | 23 ++++++++ gcc/testsuite/gcc.dg/torture/pr94947-2.c | 7 +++ gcc/testsuite/gcc.dg/torture/pr95049.c | 7 +++ gcc/testsuite/gfortran.dg/iall_masked.f90 | 22 ++++++++ gcc/testsuite/gnat.dg/discr59.adb | 24 +++++++++ gcc/testsuite/gnat.dg/discr59_pkg1.ads | 35 ++++++++++++ gcc/testsuite/gnat.dg/discr59_pkg2.ads | 15 ++++++ gcc/testsuite/gnat.dg/specs/discr7.ads | 14 +++++ gcc/tree-ssa-sccvn.c | 27 ++++++++-- gcc/tree-ssa-structalias.c | 14 +++-- gcc/tree-vect-loop-manip.c | 8 +-- libgfortran/ChangeLog | 12 +++++ libgfortran/generated/iall_i1.c | 2 +- libgfortran/generated/iall_i16.c | 2 +- libgfortran/generated/iall_i2.c | 2 +- libgfortran/generated/iall_i4.c | 2 +- libgfortran/generated/iall_i8.c | 2 +- libgfortran/m4/iall.m4 | 2 +- libstdc++-v3/ChangeLog | 39 ++++++++++++++ libstdc++-v3/include/std/type_traits | 57 +++++++++----------- .../20_util/is_nothrow_constructible/94003.cc | 46 ++++++++++++++++ .../is_nothrow_default_constructible/96999.cc | 54 +++++++++++++++++++ 33 files changed, 556 insertions(+), 75 deletions(-) create mode 100644 gcc/testsuite/g++.dg/torture/pr95717.C create mode 100644 gcc/testsuite/gcc.dg/pr95133.c create mode 100644 gcc/testsuite/gcc.dg/torture/pr94947-1.c create mode 100644 gcc/testsuite/gcc.dg/torture/pr94947-2.c create mode 100644 gcc/testsuite/gcc.dg/torture/pr95049.c create mode 100644 gcc/testsuite/gfortran.dg/iall_masked.f90 create mode 100644 gcc/testsuite/gnat.dg/discr59.adb create mode 100644 gcc/testsuite/gnat.dg/discr59_pkg1.ads create mode 100644 gcc/testsuite/gnat.dg/discr59_pkg2.ads create mode 100644 gcc/testsuite/gnat.dg/specs/discr7.ads create mode 100644 libstdc++-v3/testsuite/20_util/is_nothrow_constructible/94003.cc create mode 100644 libstdc++-v3/testsuite/20_util/is_nothrow_default_constructible [...]