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-release-arm-next-allyesconfig in repository toolchain/ci/gcc.
from 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 new 50c73234630 Fortran: improve error recovery on invalid array section new 34c60e5e776 Fortran: fix error recovery on invalid array section
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/DATESTAMP | 2 +- gcc/config/aarch64/aarch64-protos.h | 2 +- gcc/config/aarch64/aarch64.c | 12 +- gcc/cp/ChangeLog | 84 +++++++ gcc/cp/decl.c | 2 +- gcc/cp/init.c | 2 +- gcc/cp/parser.c | 40 ++-- gcc/cp/pt.c | 29 ++- gcc/cp/semantics.c | 3 +- gcc/fortran/expr.c | 4 +- gcc/ipa-modref-tree.h | 2 +- gcc/testsuite/ChangeLog | 73 ++++++ gcc/testsuite/g++.dg/cpp0x/initlist-nrv1.C | 34 +++ gcc/testsuite/g++.dg/cpp1z/class-deduction12.C | 6 + gcc/testsuite/g++.dg/cpp1z/class-deduction99.C | 35 +++ 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/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/config/aarch64/lse.S | 42 +++- libgcc/config/aarch64/t-lse | 8 +- libstdc++-v3/ChangeLog | 11 + 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 +- 40 files changed, 877 insertions(+), 73 deletions(-) create mode 100644 gcc/testsuite/g++.dg/cpp0x/initlist-nrv1.C create mode 100644 gcc/testsuite/g++.dg/cpp1z/class-deduction99.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/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