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_O3 in repository toolchain/ci/gcc.
from 6c3d3f15200 Daily bump. adds 142ae9f5f06 Daily bump. adds 309827c85f1 var-tracking: Fix a wrong-debug issue caused by my r10-7665 [...] adds b3dfc8635d2 Daily bump. adds b7c46a1d1ce doc: improve -fsanitize=undefined description adds e3c06b990b2 tree-optimization: [PR102622]: wrong code due to signed one [...] adds 241a0bcc8c6 Daily bump. adds 1cedb519613 Fix PR target/102588 adds 2560bab6ceb libstdc++: Fix std::match_results::end() for failed matches [...] adds eb7566fef58 libstdc++: Add test for std::cmp_greater adds cfddef4e6b5 libstdc++: Add missing header to test adds 95d404d85c5 libstdc++: Add missing constraint to std::span deduction gu [...] adds 06e88b7d619 libstdc++: Rename tests with incorrect extension adds 63d91069ba8 libstdc++: Add missing 'constexpr' to std::tuple [PR102270] adds 9c2eea2841a libstdc++: Fix last std::tuple constructor missing 'constex [...] adds aeee9251c64 libstdc++: Add missing return for atomic timed wait [PR102074] adds 7df66a0c95a libstdc++: Fix inefficiency in filesystem::absolute [PR99876] adds ae9e270347e libstdc++: Remove non-deducible parameter for std::advance [...] adds 90a4981e095 libstdc++: Fix UB in atomic_ref/wait_notify.cc [PR101761] adds da206878f64 libstdc++: std::system_category should know meaning of zero [...] adds 73b0f810a17 libstdc++: Optimize std::function move constructor [PR101923] adds b4f5e4c045d libstdc++: Add pretty printer for std::error_code and std:: [...] adds 371e12a7fd0 libstdc++: Add additional overload of std::lerp [PR101870] adds a9e07e1651a libstdc++: Install GDB pretty printers for debug library adds 822bd7f6a2f libstdc++: Fix CTAD for debug sequence containers adds 00967465fe8 libstdc++: Fix move construction of std::tuple with array e [...] adds 60c20a314d5 libstdc++: Fix std::numeric_limits::lowest() test for strict modes adds b8fccd58eed libstdc++: Ensure std::span and std::string_view are trivia [...] adds 38dc85da40e libstdc++: Move test that depends on wchar_t I/O to wchar_t [...] adds 7b4e6d75b18 libstdc++: Fix testcase for newly-implemented C++20 semanti [...] new e748216c237 libstdc++: Fix move construction of std::tuple with array e [...] new 8104d4fff62 libstdc++: Fix test that fails for C++20
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 | 18 ++++++ gcc/DATESTAMP | 2 +- gcc/config/sparc/sparc-modes.def | 3 + gcc/doc/invoke.texi | 3 +- gcc/testsuite/ChangeLog | 8 +++ gcc/testsuite/gcc.c-torture/execute/bitfld-10.c | 24 ++++++++ gcc/var-tracking.c | 3 +- libstdc++-v3/include/bits/atomic_timed_wait.h | 2 + libstdc++-v3/include/bits/fs_path.h | 2 +- libstdc++-v3/include/bits/regex.h | 4 +- libstdc++-v3/include/bits/std_function.h | 12 +++- libstdc++-v3/include/c_global/cmath | 16 ++++-- libstdc++-v3/include/debug/deque | 7 ++- libstdc++-v3/include/debug/forward_list | 7 ++- libstdc++-v3/include/debug/list | 7 ++- libstdc++-v3/include/debug/vector | 7 ++- libstdc++-v3/include/ext/type_traits.h | 8 ++- libstdc++-v3/include/std/span | 2 +- libstdc++-v3/include/std/tuple | 31 ++++++++--- libstdc++-v3/python/Makefile.am | 12 +++- libstdc++-v3/python/Makefile.in | 8 ++- libstdc++-v3/python/libstdcxx/v6/printers.py | 43 ++++++++++++++- libstdc++-v3/src/c++11/system_error.cc | 3 + libstdc++-v3/src/c++17/fs_ops.cc | 7 --- .../testsuite/18_support/numeric_limits/lowest.cc | 20 ++----- .../19_diagnostics/error_category/102425.cc | 18 ++++++ .../20_util/integer_comparisons/greater.cc | 61 +++++++++++++++++++++ .../20_util/is_trivially_constructible/value.cc | 2 +- .../tuple/comparison_operators/overloaded.cc | 7 ++- .../testsuite/20_util/tuple/cons/101960.cc | 13 +++++ .../testsuite/20_util/tuple/cons/102270.cc | 64 ++++++++++++++++++++++ .../requirements/trivially_copyable.cc | 11 ++++ .../23_containers/span/trivially_copyable.cc | 13 +++++ .../testsuite/25_algorithms/is_permutation/2.cc | 1 + .../testsuite/26_numerics/{lerp.cc => lerp/1.cc} | 0 .../testsuite/26_numerics/lerp/constexpr.cc | 21 +++++++ libstdc++-v3/testsuite/26_numerics/lerp/version.cc | 10 ++++ .../26_numerics/valarray/{dr630-3.C => dr630-3.cc} | 0 .../basic_filebuf/close/{ => wchar_t}/81256.cc | 0 .../basic_iostream/cons/{16251.C => 16251.cc} | 0 .../testsuite/28_regex/match_results/102667.C | 39 +++++++++++++ .../testsuite/29_atomics/atomic_ref/wait_notify.cc | 7 +-- .../testsuite/libstdc++-prettyprinters/cxx11.cc | 19 +++++++ libstdc++-v3/testsuite/util/testsuite_allocator.h | 2 +- 44 files changed, 489 insertions(+), 58 deletions(-) create mode 100644 gcc/testsuite/gcc.c-torture/execute/bitfld-10.c create mode 100644 libstdc++-v3/testsuite/19_diagnostics/error_category/102425.cc create mode 100644 libstdc++-v3/testsuite/20_util/integer_comparisons/greater.cc create mode 100644 libstdc++-v3/testsuite/20_util/tuple/cons/101960.cc create mode 100644 libstdc++-v3/testsuite/20_util/tuple/cons/102270.cc create mode 100644 libstdc++-v3/testsuite/21_strings/basic_string_view/requirement [...] create mode 100644 libstdc++-v3/testsuite/23_containers/span/trivially_copyable.cc rename libstdc++-v3/testsuite/26_numerics/{lerp.cc => lerp/1.cc} (100%) create mode 100644 libstdc++-v3/testsuite/26_numerics/lerp/constexpr.cc create mode 100644 libstdc++-v3/testsuite/26_numerics/lerp/version.cc rename libstdc++-v3/testsuite/26_numerics/valarray/{dr630-3.C => dr630-3.cc} (100%) rename libstdc++-v3/testsuite/27_io/basic_filebuf/close/{ => wchar_t}/81256.cc (100%) rename libstdc++-v3/testsuite/27_io/basic_iostream/cons/{16251.C => 16251.cc} (100%) create mode 100644 libstdc++-v3/testsuite/28_regex/match_results/102667.C