This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch releases/gcc-11 in repository gcc.
from 1cedb519613 Fix PR target/102588 new 2560bab6ceb libstdc++: Fix std::match_results::end() for failed matches [...] new eb7566fef58 libstdc++: Add test for std::cmp_greater new cfddef4e6b5 libstdc++: Add missing header to test new 95d404d85c5 libstdc++: Add missing constraint to std::span deduction gu [...] new 06e88b7d619 libstdc++: Rename tests with incorrect extension new 63d91069ba8 libstdc++: Add missing 'constexpr' to std::tuple [PR102270] new 9c2eea2841a libstdc++: Fix last std::tuple constructor missing 'constex [...] new aeee9251c64 libstdc++: Add missing return for atomic timed wait [PR102074] new 7df66a0c95a libstdc++: Fix inefficiency in filesystem::absolute [PR99876] new ae9e270347e libstdc++: Remove non-deducible parameter for std::advance [...] new 90a4981e095 libstdc++: Fix UB in atomic_ref/wait_notify.cc [PR101761] new da206878f64 libstdc++: std::system_category should know meaning of zero [...] new 73b0f810a17 libstdc++: Optimize std::function move constructor [PR101923] new b4f5e4c045d libstdc++: Add pretty printer for std::error_code and std:: [...] new 371e12a7fd0 libstdc++: Add additional overload of std::lerp [PR101870] new a9e07e1651a libstdc++: Install GDB pretty printers for debug library new 822bd7f6a2f libstdc++: Fix CTAD for debug sequence containers new 00967465fe8 libstdc++: Fix move construction of std::tuple with array e [...] new 60c20a314d5 libstdc++: Fix std::numeric_limits::lowest() test for strict modes new b8fccd58eed libstdc++: Ensure std::span and std::string_view are trivia [...] new 38dc85da40e libstdc++: Move test that depends on wchar_t I/O to wchar_t [...] new 7b4e6d75b18 libstdc++: Fix testcase for newly-implemented C++20 semanti [...]
The 22 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: 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 | 23 +++++++- 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 +- .../testsuite/20_util/tuple/cons/101960.cc | 4 ++ .../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 +- 36 files changed, 415 insertions(+), 47 deletions(-) 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