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-stable-allyesconfig in repository toolchain/ci/gcc.
from 56dc756d6ed Add myself to MAINTAINERS adds 800688513b6 PR c++/87366 - wrong error with alias template. adds 7042c69be19 2019-04-19 Steven G. Kargl kargl@gcc.gnu.org adds 849afb2e49c Daily bump. adds 1183882bc24 PR tree-optimization/92001 * tree-chrec.c (evolution_func [...] adds ade6c276b88 PR tree-optimization/90078 * tree-ssa-loop-ivopts.c (comp [...] adds e11f5aed6ce Make some std::variant helper functions noexcept adds b9d8292f9b1 Fix std::variant regression caused by never-valueless optimization adds ed42fdb5db5 Fix whitespace in ChangeLog adds 9ac9ee83c7a PR target/89093 * config/arm/arm.c (aapcs_vfp_is_call_or_ [...] adds 52455dd506f 2019-04-23 Richard Biener rguenther@suse.de adds b48cc8c574f Corrections for C++2a std::unwrap_reference traits adds 28cc38ec11e PR libstdc++/90165 constrain variant(T&&) constructor adds a4265b66a3f Implement correct std::variant triviality rules from P0602R4 adds fba98a9aa8b modulo-sched: fix branch scheduling issue (PR84032) adds c3c55e1c1a8 modulo-sched: prevent division by zero (PR87979) adds f51e2895168 * lib/target-supports.exp (check_effective_target_keeps_n [...] adds 49722646450 PR d/90079 libphobos: Fix SEGV in _aaKeys, _aaValues on 32 [...] adds a69facdba91 [GCC, AARCH64] Add GNU note section with BTI and PAC.
No new revisions were added by this update.
Summary of changes: gcc/ChangeLog | 62 +++++++ gcc/DATESTAMP | 2 +- gcc/config/aarch64/aarch64-linux.h | 2 +- gcc/config/aarch64/aarch64.c | 51 ++++++ gcc/config/arm/arm.c | 10 +- gcc/config/arm/arm.h | 18 +- gcc/config/arm/arm.opt | 4 + gcc/cp/ChangeLog | 8 + gcc/cp/typeck.c | 15 ++ gcc/doc/extend.texi | 9 + gcc/doc/invoke.texi | 7 + gcc/fortran/ChangeLog | 7 + gcc/fortran/decl.c | 29 +++ gcc/modulo-sched.c | 5 +- gcc/testsuite/ChangeLog | 37 ++++ gcc/testsuite/g++.dg/cpp0x/alias-decl-66.C | 21 +++ gcc/testsuite/g++.dg/tree-ssa/pr90078.C | 199 +++++++++++++++++++++ gcc/testsuite/gcc.dg/pr84032.c | 23 +++ gcc/testsuite/gcc.dg/pr87979.c | 11 ++ gcc/testsuite/gcc.target/aarch64/bti-1.c | 1 + gcc/testsuite/gcc.target/aarch64/va_arg_1.c | 2 +- gcc/testsuite/gfortran.dg/pr90021.f90 | 21 +++ gcc/testsuite/gfortran.dg/submodule_22.f08 | 8 +- gcc/testsuite/lib/target-supports.exp | 2 +- gcc/tree-cfgcleanup.c | 14 +- gcc/tree-chrec.c | 24 ++- gcc/tree-chrec.h | 2 +- gcc/tree-data-ref.c | 2 +- gcc/tree-ssa-loop-ivopts.c | 13 ++ libgcc/ChangeLog | 10 ++ libgcc/config/arm/pr-support.c | 1 + libgcc/config/arm/unwind-arm.c | 1 + libgcc/unwind-c.c | 1 + libobjc/ChangeLog | 8 + libobjc/exception.c | 1 + libphobos/ChangeLog | 10 ++ libphobos/libdruntime/MERGE | 2 +- libphobos/libdruntime/gcc/deh.d | 13 ++ libphobos/libdruntime/object.d | 124 +++++++++---- libstdc++-v3/ChangeLog | 68 ++++++- libstdc++-v3/include/bits/basic_string.h | 7 +- libstdc++-v3/include/std/type_traits | 5 +- libstdc++-v3/include/std/variant | 131 ++++++++------ libstdc++-v3/libsupc++/eh_personality.cc | 1 + .../testsuite/20_util/unwrap_reference/1.cc | 2 +- libstdc++-v3/testsuite/20_util/variant/compile.cc | 34 +++- libstdc++-v3/testsuite/20_util/variant/run.cc | 36 ++++ 47 files changed, 931 insertions(+), 133 deletions(-) create mode 100644 gcc/testsuite/g++.dg/cpp0x/alias-decl-66.C create mode 100644 gcc/testsuite/g++.dg/tree-ssa/pr90078.C create mode 100644 gcc/testsuite/gcc.dg/pr84032.c create mode 100644 gcc/testsuite/gcc.dg/pr87979.c create mode 100644 gcc/testsuite/gfortran.dg/pr90021.f90