This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_gnu_native_build/release-aarch64 in repository toolchain/ci/gcc.
from 4e092f1be65 Daily bump. adds 61dec0cb339 Fix internal error with vectorization on SPARC adds fbe4de4189c [committed] Fix more problems with new linker warnings adds 03f73056bf6 isel: Fix up gimple_expand_vec_set_expr [PR105528] adds 6b5ca56fec4 x86: Add .note.GNU-stack section only for Linux adds 1572e41d759 libstdc++: Add <syncstream> declarations to <iosfwd> [PR105284] adds 9076ad14a9c Daily bump. adds 39099827b0f libstdc++: Don't use std::tolower in <charconv> [PR103911] adds 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] new af7f539ec6f Daily bump.
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 | 15 ++ gcc/DATESTAMP | 2 +- gcc/config/sparc/sparc.c | 4 +- gcc/cp/ChangeLog | 51 +++++ gcc/cp/call.c | 8 +- gcc/cp/constexpr.c | 8 +- gcc/cp/decl.c | 24 ++- gcc/cp/decl2.c | 12 +- gcc/cp/init.c | 15 +- gcc/cp/lambda.c | 20 +- gcc/cp/pt.c | 8 +- gcc/gimple-isel.cc | 3 +- gcc/testsuite/ChangeLog | 74 +++++++ .../g++.dg/cpp0x/constexpr-fno-elide-ctors1.C | 89 +++++++++ gcc/testsuite/g++.dg/cpp0x/initlist-new6.C | 39 ++++ .../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/cpp2a/lambda-pack-init7.C | 18 ++ gcc/testsuite/g++.dg/opt/const7.C | 7 + gcc/testsuite/g++.target/i386/mv31.C | 10 + gcc/testsuite/gcc.dg/pr105528.c | 23 +++ gcc/testsuite/gcc.target/i386/iamcu/asm-support.S | 2 + gcc/testsuite/gcc.target/sparc/20220510-1.c | 31 +++ gcc/testsuite/gcc.target/x86_64/abi/asm-support.S | 2 + .../gcc.target/x86_64/abi/avx/asm-support.S | 2 + .../gcc.target/x86_64/abi/avx512f/asm-support.S | 2 + .../gcc.target/x86_64/abi/ms-sysv/do-test.S | 2 + gcc/testsuite/lib/prune.exp | 5 + libstdc++-v3/ChangeLog | 24 +++ libstdc++-v3/include/std/iosfwd | 18 ++ libstdc++-v3/include/std/syncstream | 6 +- libstdc++-v3/src/c++17/floating_from_chars.cc | 11 +- .../testsuite/27_io/headers/iosfwd/synopsis.cc | 119 ++++++++++++ .../testsuite/27_io/headers/iosfwd/types.cc | 214 +++++++++++++++++++++ 35 files changed, 883 insertions(+), 34 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/lambda/lambda-current-inst1.C create mode 100644 gcc/testsuite/g++.dg/cpp1z/aligned-new9.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++.target/i386/mv31.C create mode 100644 gcc/testsuite/gcc.dg/pr105528.c create mode 100644 gcc/testsuite/gcc.target/sparc/20220510-1.c create mode 100644 libstdc++-v3/testsuite/27_io/headers/iosfwd/synopsis.cc create mode 100644 libstdc++-v3/testsuite/27_io/headers/iosfwd/types.cc