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 in repository toolchain/ci/gcc.
from a7d52dfb0d0 Daily bump. adds 5f587c81bc5 [PR105032] LRA: modify loop condition to find reload insns [...] adds ecc64506683 i386: Fix up ix86_expand_vector_init_general [PR105123] adds 800a09fc0bc Daily bump. adds e6503952a2f libstdc++: Improve config output for --enable-cstdio [PR104301] adds 541edc34632 libstdc++: Remove incorrect copyright notice from header adds 94525b91df8 libstdc++: Fix filenames in Doxygen @file comments adds fe76adc667b libstdc++: Add missing constexpr to uses-allocator construc [...] adds ab0efe756e2 libstdc++: Add suggestion to std::uncaught_exception() warning adds c277f6c1029 libstdc++: Document final option names for enabling C++20 adds 53a1b53d782 libstdc++: Remove -gdwarf-4 from flags for debug library adds f6bf63ff368 libstdc++: Use __cpp_lib_concepts in std::reverse_iterator [...] adds 0811a4dc39d libstdc++: Rename non-reserved macros in config header [PR103650] adds c358b9e4937 libstdc++: Fix doxygen comment for filesystem::perms operators adds b8f55f9d21f libstdc++: Remove un-implementable noexcept from Filesystem [...] adds 123f87f604e libstdc++: Simplify std::allocator_traits<allocator<void>>: [...] adds 31a7c09dba1 libstdc++: Reset filesystem::recursive_directory_iterator on error adds 583267dc1e4 libstdc++: Do not use dirent::d_type unconditionally adds cd0312e8af9 libstdc++: Adjust Filesystem TS test for Windows adds 6f8133689f4 libstdc++: Fix mismatched noexcept-specifiers in Filesystem TS adds 20f2303b0ce libstdc++: Add missing constraints to std::bit_cast [PR105027] adds ffd135934a4 libstdc++: Make std::error_code printer more robust adds 4f939ac1e29 ipa: Careful processing ANCESTOR jump functions and NULL po [...] adds ead72447c7a Daily bump. adds a7d4fbc7754 Daily bump. adds 862ccb51493 Daily bump.
No new revisions were added by this update.
Summary of changes: gcc/ChangeLog | 47 ++++++ gcc/DATESTAMP | 2 +- gcc/config/i386/i386-expand.c | 4 +- gcc/ipa-cp.c | 75 ++++++--- gcc/ipa-prop.c | 20 ++- gcc/ipa-prop.h | 13 ++ gcc/lra-assigns.c | 3 +- gcc/testsuite/ChangeLog | 21 +++ gcc/testsuite/gcc.dg/ipa/pr103083-1.c | 28 ++++ gcc/testsuite/gcc.dg/ipa/pr103083-2.c | 30 ++++ gcc/testsuite/gcc.target/i386/pr105032.c | 35 ++++ gcc/testsuite/gcc.target/i386/pr105123.c | 22 +++ libstdc++-v3/ChangeLog | 176 +++++++++++++++++++++ libstdc++-v3/acinclude.m4 | 4 +- libstdc++-v3/configure | 11 +- libstdc++-v3/configure.ac | 2 +- libstdc++-v3/doc/html/manual/status.html | 4 +- libstdc++-v3/doc/xml/manual/status_cxx2020.xml | 4 +- libstdc++-v3/include/Makefile.am | 2 + libstdc++-v3/include/Makefile.in | 2 + libstdc++-v3/include/bits/alloc_traits.h | 8 +- libstdc++-v3/include/bits/allocator.h | 4 +- libstdc++-v3/include/bits/fs_fwd.h | 2 +- libstdc++-v3/include/bits/fs_ops.h | 2 +- libstdc++-v3/include/bits/stl_iterator.h | 4 +- libstdc++-v3/include/bits/uses_allocator_args.h | 18 +-- libstdc++-v3/include/experimental/bits/fs_fwd.h | 2 +- libstdc++-v3/include/experimental/bits/fs_ops.h | 10 +- libstdc++-v3/include/experimental/bits/fs_path.h | 4 +- libstdc++-v3/include/std/bit | 4 + libstdc++-v3/libsupc++/exception | 2 +- libstdc++-v3/python/libstdcxx/v6/printers.py | 110 +++++++++++-- libstdc++-v3/src/c++17/fs_dir.cc | 12 +- libstdc++-v3/src/filesystem/dir.cc | 12 +- libstdc++-v3/src/filesystem/ops.cc | 6 +- .../testsuite/17_intro/headers/c++1998/103650.cc | 13 ++ .../testsuite/20_util/uses_allocator/make_obj.cc | 30 +++- .../uses_allocator/uninitialized_construct.cc | 17 ++ .../testsuite/26_numerics/bit/bit.cast/105027.cc | 18 +++ .../27_io/filesystem/iterators/error_reporting.cc | 139 ++++++++++++++++ .../filesystem/iterators/error_reporting.cc | 140 ++++++++++++++++ .../filesystem/operations/create_directories.cc | 15 ++ .../testsuite/libstdc++-prettyprinters/cxx11.cc | 10 +- 43 files changed, 979 insertions(+), 108 deletions(-) create mode 100644 gcc/testsuite/gcc.dg/ipa/pr103083-1.c create mode 100644 gcc/testsuite/gcc.dg/ipa/pr103083-2.c create mode 100644 gcc/testsuite/gcc.target/i386/pr105032.c create mode 100644 gcc/testsuite/gcc.target/i386/pr105123.c create mode 100644 libstdc++-v3/testsuite/17_intro/headers/c++1998/103650.cc create mode 100644 libstdc++-v3/testsuite/20_util/uses_allocator/uninitialized_con [...] create mode 100644 libstdc++-v3/testsuite/26_numerics/bit/bit.cast/105027.cc create mode 100644 libstdc++-v3/testsuite/27_io/filesystem/iterators/error_reporting.cc create mode 100644 libstdc++-v3/testsuite/experimental/filesystem/iterators/error_ [...]