This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_gcc_check_bootstrap/master-aarch64-check_bootstrap in repository toolchain/ci/gcc.
from 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] adds 832fcbbc731 libstdc++: Fix incorrect IS number in doc comment adds 3fc22eedb03 libstdc++: Default to mutex-based atomics on RISC-V adds 613a6fca751 ctfc: get rid of the static variable in ctf_list_add_ctf_vars () adds d0b00e74bf5 CTF for extern variable fix [PR105089] adds d634c5d7c78 Refactor and update CTF testcases [PR105089] adds 74b2e20222c c++: lambda and the current instantiation [PR82980] adds 82536fbb8a7 libgccjit: Fix a bootstrap break for some targets. adds c5de3444c47 c++: constexpr trivial -fno-elide-ctors [PR104646] adds af27d545dc6 runtime: use regset indexes for PPC register values adds a358e4b6081 analyzer: fix escaping of pointer arithmetic [PR105264] adds f5cd166ffd3 Update gcc de.po, fr.po, sv.po adds 031bd52e482 Daily bump. adds 6364a39907b c++: using in diagnostics [PR102987] adds e580f81d22d c++: unsigned int32_t enum promotion [PR102804]
No new revisions were added by this update.
Summary of changes: gcc/ChangeLog | 48 + gcc/DATESTAMP | 2 +- gcc/analyzer/ChangeLog | 15 + gcc/analyzer/region-model-reachability.cc | 8 +- gcc/analyzer/svalue.cc | 55 +- gcc/analyzer/svalue.h | 2 + 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 | 38 + gcc/cp/constexpr.cc | 3 +- gcc/cp/decl.cc | 2 + gcc/cp/error.cc | 8 + gcc/cp/lambda.cc | 20 +- gcc/ctfc.cc | 62 +- gcc/ctfc.h | 8 +- gcc/ctfout.cc | 28 +- gcc/dwarf2ctf.cc | 18 +- gcc/go/gofrontend/MERGE | 2 +- gcc/jit/ChangeLog | 5 + gcc/jit/jit-playback.cc | 4 +- gcc/po/ChangeLog | 4 + gcc/po/de.po | 491 ++-- gcc/po/fr.po | 508 ++-- gcc/po/sv.po | 543 ++--- gcc/simplify-rtx.cc | 24 +- gcc/testsuite/ChangeLog | 65 + .../g++.dg/cpp0x/constexpr-fno-elide-ctors1.C | 89 + .../g++.dg/cpp0x/lambda/lambda-current-inst1.C | 18 + gcc/testsuite/g++.dg/diagnostic/using1.C | 16 + gcc/testsuite/g++.dg/ext/unsigned-typedef1.C | 9 + gcc/testsuite/gcc.c-torture/compile/pr105247.c | 10 + gcc/testsuite/gcc.dg/analyzer/pr105252.c | 20 + .../gcc.dg/analyzer/torture/symbolic-10.c | 40 + gcc/testsuite/gcc.dg/debug/ctf/ctf-array-2.c | 22 +- gcc/testsuite/gcc.dg/debug/ctf/ctf-array-5.c | 17 + gcc/testsuite/gcc.dg/debug/ctf/ctf-variables-3.c | 22 + gcc/testsuite/gcc.target/s390/pr80725.c | 2 +- libgo/runtime/go-signal.c | 25 +- libstdc++-v3/ChangeLog | 40 + 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 + 57 files changed, 3969 insertions(+), 1015 deletions(-) create mode 100644 gcc/config/s390/3931.md create mode 100644 gcc/testsuite/g++.dg/cpp0x/constexpr-fno-elide-ctors1.C create mode 100644 gcc/testsuite/g++.dg/cpp0x/lambda/lambda-current-inst1.C create mode 100644 gcc/testsuite/g++.dg/diagnostic/using1.C create mode 100644 gcc/testsuite/g++.dg/ext/unsigned-typedef1.C create mode 100644 gcc/testsuite/gcc.c-torture/compile/pr105247.c create mode 100644 gcc/testsuite/gcc.dg/analyzer/pr105252.c create mode 100644 gcc/testsuite/gcc.dg/analyzer/torture/symbolic-10.c create mode 100644 gcc/testsuite/gcc.dg/debug/ctf/ctf-array-5.c create mode 100644 gcc/testsuite/gcc.dg/debug/ctf/ctf-variables-3.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