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-allmodconfig in repository toolchain/ci/gcc.
from c5beaef0c93 Daily bump. adds a4360611483 Adding noexcept-specification on tuple constructors (LWG 2899) adds ac8f540ed3a Fix ChangeLog format adds d05d4059fd9 Daily bump. adds dcdfd80c931 libphobos: Backport minimal MinGW support patches. adds 9076bd460c7 libphobos: Fix multilib builds for s390x-linux-gnu adds c5aaf0af76b PR libstdc++/87982 Fix generate_n and fill_n use of _Size p [...] adds 94ed6c0aaf7 Remove unused std::_Iter_base class template adds 4b7f4f121c9 Add nodiscard to std::vector<bool>::empty() adds e3600f25710 PR libstdc++/71312 Increase alignment of pooled mutexes adds 744a3010791 Use _GLIBCXX_NOEXCEPT_IF for std::swap adds d9375e49007 Adjust doxygen comment for std::generate_n adds 241d73c4b3b 2019-04-29 Richard Biener rguenther@suse.de adds 3114c9f4670 PR rtl-optimization/90257 * cfgrtl.c (flow_active_insn_p) [...] adds f7ea3288ba3 Remove DDR_INNER_LOOP adds ad9db543abb [C++ PATCH] some cleanups new b42bc85ab81 PR c++/82081 - tail call optimization breaks noexcept
The 1 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 | 40 + gcc/DATESTAMP | 2 +- gcc/cfgrtl.c | 10 +- gcc/cp/ChangeLog | 9 + gcc/cp/decl.c | 17 +- gcc/cp/method.c | 7 +- gcc/cp/pt.c | 2 +- gcc/cp/semantics.c | 30 +- gcc/lra-spills.c | 15 + gcc/testsuite/g++.dg/tree-ssa/tail-call-1.C | 11 + gcc/tree-data-ref.c | 4 +- gcc/tree-data-ref.h | 5 - gcc/tree-ssa.c | 5 + gcc/tree-tailcall.c | 7 + libphobos/libdruntime/MERGE | 2 +- libphobos/libdruntime/core/stdc/stdio.d | 48 +- libphobos/libdruntime/core/sys/linux/link.d | 9 +- libphobos/libdruntime/core/sys/posix/setjmp.d | 9 + libphobos/libdruntime/core/sys/posix/sys/stat.d | 76 ++ libphobos/libdruntime/core/sys/posix/ucontext.d | 4 +- libphobos/libdruntime/core/sys/windows/dll.d | 4 +- libphobos/libdruntime/core/thread.d | 17 +- libphobos/libdruntime/gcc/sections/elf_shared.d | 35 +- libphobos/libdruntime/rt/dmain2.d | 10 +- libphobos/src/MERGE | 2 +- libphobos/src/std/math.d | 20 +- libstdc++-v3/ChangeLog | 47 + libstdc++-v3/include/bits/move.h | 12 +- libstdc++-v3/include/bits/stl_algo.h | 9 +- libstdc++-v3/include/bits/stl_algobase.h | 75 +- libstdc++-v3/include/bits/stl_bvector.h | 2 +- .../include/bits/stl_iterator_base_types.h | 20 - libstdc++-v3/include/std/tuple | 39 + libstdc++-v3/src/c++11/shared_ptr.cc | 4 +- .../testsuite/20_util/tuple/cons/noexcept_specs.cc | 943 +++++++++++++++++++++ .../testsuite/25_algorithms/fill_n/87982.cc | 87 ++ .../testsuite/25_algorithms/fill_n/87982_neg.cc | 31 + .../testsuite/25_algorithms/fill_n/dr426.cc | 58 ++ .../testsuite/25_algorithms/generate_n/87982.cc | 88 ++ .../25_algorithms/generate_n/87982_neg.cc | 32 + .../testsuite/25_algorithms/generate_n/dr426.cc | 46 + 41 files changed, 1746 insertions(+), 147 deletions(-) create mode 100644 gcc/testsuite/g++.dg/tree-ssa/tail-call-1.C create mode 100644 libstdc++-v3/testsuite/20_util/tuple/cons/noexcept_specs.cc create mode 100644 libstdc++-v3/testsuite/25_algorithms/fill_n/87982.cc create mode 100644 libstdc++-v3/testsuite/25_algorithms/fill_n/87982_neg.cc create mode 100644 libstdc++-v3/testsuite/25_algorithms/fill_n/dr426.cc create mode 100644 libstdc++-v3/testsuite/25_algorithms/generate_n/87982.cc create mode 100644 libstdc++-v3/testsuite/25_algorithms/generate_n/87982_neg.cc create mode 100644 libstdc++-v3/testsuite/25_algorithms/generate_n/dr426.cc