This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_bmk_gnu_tx1/gnu-release-aarch64-spec2k6-O3_LTO in repository toolchain/ci/gcc.
from 43146ecb33f Daily bump. adds 5296b77556d c++: rodata and defaulted ctor [PR104142] adds 394c852a6b4 c++: low -faligned-new [PR102071] adds 0c45820ead8 c++: local function versioning [PR104669] adds fe81f5bd3c3 c++: empty base constexpr -fno-elide-ctors [PR105245] adds 728f97cf043 c++: temp cleanup in new [PR105265] adds dc8739c2ab1 c++: lambda and the current instantiation [PR82980] adds a67bc6320d3 c++: constexpr trivial -fno-elide-ctors [PR104646] adds f0484f60e64 c++: pack init-capture of unresolved overload [PR102629] adds af7f539ec6f Daily bump. adds 9151de4b43b libstdc++: ppc: conditionalize vsx-only simd intrinsics adds 8d2f59c8e26 c++: template-id with current inst qualifier [PR102300] adds f705d0f2d03 c++: deduction guides and ttp rewriting [PR102479] adds e60f7127b32 c++: alignment of local typedef in template [PR65211] adds 5c6577dcf1d c++: template conversion op [PR101698] adds f9e356458d8 c++: NRV and ref-extended temps [PR101442] adds 896513cbc4b Daily bump. adds e5c4644a651 Daily bump. adds e34cf6b99ca Daily bump. adds 6c9a2db0586 Fix modref_tree::remap_params adds a9d7992ef57 ipa/105598 - testcase for PR105598 adds aeb6898b89e libstdc++: Fix status docs for <bit> support adds 54e6c40de72 libstdc++: Add C++23 status docs adds ae564e7003d libstdc++: Fix hyperlink in docs adds 5d418194ccb libstdc++: Document support for constexpr optional (P2231R1) adds 9ef808fb437 [AArch64] add barriers to ool __sync builtins adds 50c73234630 Fortran: improve error recovery on invalid array section adds 34c60e5e776 Fortran: fix error recovery on invalid array section adds 455cdace26b Daily bump.
No new revisions were added by this update.
Summary of changes: gcc/ChangeLog | 16 ++ gcc/DATESTAMP | 2 +- gcc/config/aarch64/aarch64-protos.h | 2 +- gcc/config/aarch64/aarch64.c | 12 +- gcc/cp/ChangeLog | 84 +++++++ gcc/cp/call.c | 8 +- gcc/cp/constexpr.c | 8 +- gcc/cp/decl.c | 26 ++- gcc/cp/decl2.c | 12 +- gcc/cp/init.c | 17 +- gcc/cp/lambda.c | 20 +- gcc/cp/parser.c | 40 ++-- gcc/cp/pt.c | 37 ++- gcc/cp/semantics.c | 3 +- gcc/fortran/ChangeLog | 19 ++ gcc/fortran/expr.c | 4 +- gcc/ipa-modref-tree.h | 2 +- gcc/testsuite/ChangeLog | 106 +++++++++ .../g++.dg/cpp0x/constexpr-fno-elide-ctors1.C | 89 ++++++++ gcc/testsuite/g++.dg/cpp0x/initlist-new6.C | 39 ++++ gcc/testsuite/g++.dg/cpp0x/initlist-nrv1.C | 34 +++ .../g++.dg/cpp0x/lambda/lambda-current-inst1.C | 18 ++ gcc/testsuite/g++.dg/cpp1y/constexpr-empty2.C | 1 + gcc/testsuite/g++.dg/cpp1z/aligned-new9.C | 30 +++ gcc/testsuite/g++.dg/cpp1z/class-deduction12.C | 6 + gcc/testsuite/g++.dg/cpp1z/class-deduction99.C | 35 +++ gcc/testsuite/g++.dg/cpp2a/lambda-pack-init7.C | 18 ++ gcc/testsuite/g++.dg/opt/const7.C | 7 + gcc/testsuite/g++.dg/parse/no-typename1.C | 2 +- gcc/testsuite/g++.dg/template/conv19.C | 34 +++ gcc/testsuite/g++.dg/template/nested7.C | 12 + gcc/testsuite/g++.target/i386/mv31.C | 10 + gcc/testsuite/g++.target/i386/vec-tmpl1.C | 17 ++ gcc/testsuite/gcc.dg/torture/pr105598.c | 32 +++ .../gcc.target/aarch64/sync-comp-swap-ool.c | 6 + .../gcc.target/aarch64/sync-op-acquire-ool.c | 6 + .../gcc.target/aarch64/sync-op-full-ool.c | 9 + gcc/testsuite/gcc.target/aarch64/target_attr_20.c | 2 +- gcc/testsuite/gcc.target/aarch64/target_attr_21.c | 2 +- gcc/testsuite/gfortran.dg/pr104849.f90 | 9 + gcc/testsuite/gfortran.dg/pr105230.f90 | 8 + libgcc/ChangeLog | 6 + libgcc/config/aarch64/lse.S | 42 +++- libgcc/config/aarch64/t-lse | 8 +- libstdc++-v3/ChangeLog | 44 ++++ libstdc++-v3/doc/html/index.html | 2 +- libstdc++-v3/doc/html/manual/index.html | 4 +- libstdc++-v3/doc/html/manual/intro.html | 2 +- libstdc++-v3/doc/html/manual/setup.html | 2 +- libstdc++-v3/doc/html/manual/status.html | 117 ++++++++-- libstdc++-v3/doc/xml/manual/intro.xml | 10 +- libstdc++-v3/doc/xml/manual/prerequisites.xml | 3 +- libstdc++-v3/doc/xml/manual/status_cxx2020.xml | 18 +- libstdc++-v3/doc/xml/manual/status_cxx2023.xml | 249 +++++++++++++++++++++ libstdc++-v3/include/experimental/bits/simd.h | 13 +- 55 files changed, 1271 insertions(+), 93 deletions(-) create mode 100644 gcc/testsuite/g++.dg/cpp0x/constexpr-fno-elide-ctors1.C 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/cpp0x/lambda/lambda-current-inst1.C create mode 100644 gcc/testsuite/g++.dg/cpp1z/aligned-new9.C create mode 100644 gcc/testsuite/g++.dg/cpp1z/class-deduction99.C create mode 100644 gcc/testsuite/g++.dg/cpp2a/lambda-pack-init7.C create mode 100644 gcc/testsuite/g++.dg/opt/const7.C create mode 100644 gcc/testsuite/g++.dg/template/conv19.C create mode 100644 gcc/testsuite/g++.dg/template/nested7.C create mode 100644 gcc/testsuite/g++.target/i386/mv31.C create mode 100644 gcc/testsuite/g++.target/i386/vec-tmpl1.C create mode 100644 gcc/testsuite/gcc.dg/torture/pr105598.c create mode 100644 gcc/testsuite/gcc.target/aarch64/sync-comp-swap-ool.c create mode 100644 gcc/testsuite/gcc.target/aarch64/sync-op-acquire-ool.c create mode 100644 gcc/testsuite/gcc.target/aarch64/sync-op-full-ool.c create mode 100644 gcc/testsuite/gfortran.dg/pr104849.f90 create mode 100644 gcc/testsuite/gfortran.dg/pr105230.f90 create mode 100644 libstdc++-v3/doc/xml/manual/status_cxx2023.xml