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 49dee6fd47b Daily bump. adds 44cc3c94460 Daily bump. adds 6190ebb07cd libstdc++: Fix test that fails on Solaris [PR104731] adds eb049ef0f46 libstdc++: Fix deserialization for std::normal_distribution [...] adds 8562fbaae9d libstdc++: Define _GNU_SOURCE for secure_getenv on Cygwin [ [...] adds 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. new 5296b77556d c++: rodata and defaulted ctor [PR104142] new 394c852a6b4 c++: low -faligned-new [PR102071] new 0c45820ead8 c++: local function versioning [PR104669] new fe81f5bd3c3 c++: empty base constexpr -fno-elide-ctors [PR105245] new 728f97cf043 c++: temp cleanup in new [PR105265] new dc8739c2ab1 c++: lambda and the current instantiation [PR82980] new a67bc6320d3 c++: constexpr trivial -fno-elide-ctors [PR104646] new f0484f60e64 c++: pack init-capture of unresolved overload [PR102629]
The 8 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/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 | 32 +++ .../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 | 55 ++++++ libstdc++-v3/include/bits/random.tcc | 2 +- libstdc++-v3/include/std/iosfwd | 18 ++ libstdc++-v3/include/std/syncstream | 6 +- libstdc++-v3/src/c++17/floating_from_chars.cc | 11 +- libstdc++-v3/src/c++17/fs_ops.cc | 4 + libstdc++-v3/src/filesystem/dir.cc | 4 + libstdc++-v3/src/filesystem/ops.cc | 4 + .../normal_distribution/operators/serialize.cc | 36 +++- .../27_io/filesystem/iterators/error_reporting.cc | 35 ++-- .../testsuite/27_io/headers/iosfwd/synopsis.cc | 119 ++++++++++++ .../testsuite/27_io/headers/iosfwd/types.cc | 214 +++++++++++++++++++++ 40 files changed, 891 insertions(+), 49 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