This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_gcc_bootstrap/master-aarch64-bootstrap_profiled in repository toolchain/ci/gcc.
from f2ebf2d98ef aarch64: Make sure the UF divides the VF [PR105254] adds 33ba46663cd go.test: update issue10441.go to current upstream version adds 247bbed1b8a Daily bump. adds 019d6d4149e c++: add test [PR105265] adds ad8161e6d7b c++: NRV and ref-extended temps [PR101442] adds d4e00ccef6c c++: template conversion op [PR101698] adds 1824da60663 c++: local fn and generic lambda [PR97219] adds 8369b4e4c64 c++: alignment of local typedef in template [PR65211] adds d2f8208e9ad libstdc++: Fix missing and incorrect feature test macros [P [...] adds 41a72a744a9 libstdc++: Add new headers to <bits/stdc++.h> PCH adds db4ce4a3d7a s390: Add scheduler description for z16. adds 122a65e86ba testsuite/s390: Silence warning in pr80725.c adds ba2f60499dd simplify-rtx: Don't assume shift count has the same mode as [...] adds b209a349268 analyzer: fix ICE comparing VECTOR_CSTs [PR105252] new 832fcbbc731 libstdc++: Fix incorrect IS number in doc comment new 3fc22eedb03 libstdc++: Default to mutex-based atomics on RISC-V
The 2 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 | 63 + gcc/DATESTAMP | 2 +- gcc/analyzer/svalue.cc | 13 +- gcc/config/s390/3931.md | 2562 ++++++++++++++++++++ gcc/config/s390/s390.cc | 29 +- gcc/config/s390/s390.h | 2 +- gcc/config/s390/s390.md | 5 +- gcc/cp/ChangeLog | 19 + gcc/cp/cp-tree.h | 1 + gcc/cp/decl.cc | 2 +- gcc/cp/init.cc | 2 +- gcc/cp/name-lookup.cc | 18 + gcc/cp/pt.cc | 13 +- gcc/cp/semantics.cc | 9 +- gcc/d/ChangeLog | 9 + gcc/fortran/ChangeLog | 6 + gcc/simplify-rtx.cc | 24 +- gcc/testsuite/ChangeLog | 71 + gcc/testsuite/g++.dg/cpp0x/initlist-new6.C | 39 + gcc/testsuite/g++.dg/cpp0x/initlist-nrv1.C | 34 + .../g++.dg/cpp1y/lambda-generic-local-fn1.C | 17 + gcc/testsuite/g++.dg/template/conv19.C | 34 + gcc/testsuite/g++.target/i386/vec-tmpl1.C | 16 + gcc/testsuite/gcc.c-torture/compile/pr105247.c | 10 + gcc/testsuite/gcc.dg/analyzer/pr105252.c | 20 + gcc/testsuite/gcc.target/s390/pr80725.c | 2 +- gcc/testsuite/go.test/test/fixedbugs/issue10441.go | 2 +- libgomp/ChangeLog | 4 + libphobos/ChangeLog | 5 + libstdc++-v3/acinclude.m4 | 3 + libstdc++-v3/configure | 7 +- libstdc++-v3/doc/xml/manual/intro.xml | 2 +- libstdc++-v3/include/bits/stl_vector.h | 3 +- libstdc++-v3/include/c_compatibility/stdatomic.h | 2 + libstdc++-v3/include/precompiled/stdc++.h | 4 + libstdc++-v3/include/std/optional | 12 +- libstdc++-v3/include/std/version | 5 +- .../testsuite/20_util/optional/monadic/and_then.cc | 4 +- .../testsuite/20_util/optional/monadic/version.cc | 10 - .../testsuite/20_util/optional/requirements.cc | 4 +- libstdc++-v3/testsuite/20_util/optional/version.cc | 4 +- .../23_containers/vector/cons/constexpr.cc | 7 + .../23_containers/vector/requirements/version.cc | 10 + .../29_atomics/headers/stdatomic.h/c_compat.cc | 6 + .../29_atomics/headers/stdatomic.h/version.cc | 10 + 45 files changed, 3079 insertions(+), 47 deletions(-) create mode 100644 gcc/config/s390/3931.md create mode 100644 gcc/testsuite/g++.dg/cpp0x/initlist-new6.C create mode 100644 gcc/testsuite/g++.dg/cpp0x/initlist-nrv1.C create mode 100644 gcc/testsuite/g++.dg/cpp1y/lambda-generic-local-fn1.C create mode 100644 gcc/testsuite/g++.dg/template/conv19.C create mode 100644 gcc/testsuite/g++.target/i386/vec-tmpl1.C create mode 100644 gcc/testsuite/gcc.c-torture/compile/pr105247.c create mode 100644 gcc/testsuite/gcc.dg/analyzer/pr105252.c delete mode 100644 libstdc++-v3/testsuite/20_util/optional/monadic/version.cc create mode 100644 libstdc++-v3/testsuite/23_containers/vector/requirements/version.cc create mode 100644 libstdc++-v3/testsuite/29_atomics/headers/stdatomic.h/version.cc