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-lts-defconfig in repository toolchain/ci/gcc.
from 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. 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 new 8d2f59c8e26 c++: template-id with current inst qualifier [PR102300] new f705d0f2d03 c++: deduction guides and ttp rewriting [PR102479]
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/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/parser.c | 40 ++-- gcc/cp/pt.c | 28 ++- 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/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/nested7.C | 12 ++ 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/experimental/bits/simd.h | 13 +- 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 +++- .../testsuite/27_io/headers/iosfwd/synopsis.cc | 119 ++++++++++++ .../testsuite/27_io/headers/iosfwd/types.cc | 214 +++++++++++++++++++++ 46 files changed, 1070 insertions(+), 56 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/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/nested7.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