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-allyesconfig in repository toolchain/ci/gcc.
from a796a135414 2019-04-22 Paul Thomas pault@gcc.gnu.org adds 127d812973e libphobos: Merge upstream druntime 109f0f2e adds 1d42f3ce5c0 libphobos: Merge upstream phobos b538f758a adds 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
No new revisions were added by this update.
Summary of changes: ChangeLog | 5 + MAINTAINERS | 2 +- gcc/ChangeLog | 42 ++++ gcc/DATESTAMP | 2 +- 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/testsuite/ChangeLog | 15 ++ gcc/testsuite/g++.dg/cpp0x/alias-decl-66.C | 21 ++ gcc/testsuite/g++.dg/tree-ssa/pr90078.C | 199 ++++++++++++++++ gcc/testsuite/gfortran.dg/pr90021.f90 | 21 ++ gcc/testsuite/gfortran.dg/submodule_22.f08 | 8 +- 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/core/runtime.d | 24 +- libphobos/libdruntime/core/stdc/math.d | 257 +++++++++++---------- libphobos/libdruntime/core/sys/posix/fcntl.d | 7 + libphobos/libdruntime/core/sys/posix/spawn.d | 5 +- libphobos/libdruntime/core/sys/posix/sys/stat.d | 4 +- libphobos/libdruntime/core/thread.d | 65 +++++- libphobos/libdruntime/gcc/deh.d | 13 ++ libphobos/libdruntime/rt/aApplyR.d | 8 +- libphobos/libdruntime/rt/config.d | 2 +- libphobos/libdruntime/rt/dmain2.d | 4 + libphobos/libdruntime/rt/monitor_.d | 12 +- libphobos/libdruntime/rt/qsort.d | 30 +++ libphobos/src/MERGE | 2 +- libphobos/src/std/net/curl.d | 4 +- libphobos/src/std/outbuffer.d | 10 +- libphobos/src/std/uni.d | 22 +- libphobos/src/std/xml.d | 12 +- libstdc++-v3/ChangeLog | 39 +++- libstdc++-v3/include/bits/basic_string.h | 7 +- libstdc++-v3/include/std/type_traits | 5 +- libstdc++-v3/include/std/variant | 53 ++--- libstdc++-v3/libsupc++/eh_personality.cc | 1 + .../testsuite/20_util/unwrap_reference/1.cc | 2 +- libstdc++-v3/testsuite/20_util/variant/compile.cc | 14 ++ libstdc++-v3/testsuite/20_util/variant/run.cc | 36 +++ 56 files changed, 934 insertions(+), 215 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/gfortran.dg/pr90021.f90