This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_gcc_bootstrap/release-arm-bootstrap_ubsan 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. new e6503952a2f libstdc++: Improve config output for --enable-cstdio [PR104301] new 541edc34632 libstdc++: Remove incorrect copyright notice from header new 94525b91df8 libstdc++: Fix filenames in Doxygen @file comments new fe76adc667b libstdc++: Add missing constexpr to uses-allocator construc [...] new ab0efe756e2 libstdc++: Add suggestion to std::uncaught_exception() warning new c277f6c1029 libstdc++: Document final option names for enabling C++20 new 53a1b53d782 libstdc++: Remove -gdwarf-4 from flags for debug library new f6bf63ff368 libstdc++: Use __cpp_lib_concepts in std::reverse_iterator [...] new 0811a4dc39d libstdc++: Rename non-reserved macros in config header [PR103650] new c358b9e4937 libstdc++: Fix doxygen comment for filesystem::perms operators new b8f55f9d21f libstdc++: Remove un-implementable noexcept from Filesystem [...] new 123f87f604e libstdc++: Simplify std::allocator_traits<allocator<void>>: [...] new 31a7c09dba1 libstdc++: Reset filesystem::recursive_directory_iterator on error new 583267dc1e4 libstdc++: Do not use dirent::d_type unconditionally new cd0312e8af9 libstdc++: Adjust Filesystem TS test for Windows new 6f8133689f4 libstdc++: Fix mismatched noexcept-specifiers in Filesystem TS new 20f2303b0ce libstdc++: Add missing constraints to std::bit_cast [PR105027] new ffd135934a4 libstdc++: Make std::error_code printer more robust
The 18 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/i386/i386-expand.c | 4 +- gcc/lra-assigns.c | 3 +- gcc/testsuite/ChangeLog | 13 ++ gcc/testsuite/gcc.target/i386/pr105032.c | 35 ++++++ gcc/testsuite/gcc.target/i386/pr105123.c | 22 ++++ 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 +- 37 files changed, 626 insertions(+), 79 deletions(-) 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_ [...]