This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_gnu_cross_build/master-aarch64 in repository toolchain/ci/gcc.
from b1e701dc4ad [c++] Adjust mark used member in instantiated class scope adds 260a5334ee9 libstdc++: Improve std::regex_error::what() strings adds 9a2451c1013 libstdc++: Compare match_results for failed regex_match adds e09366718ad libstdc++: Reduce template instantiations in <regex> adds cebe875f6f4 libstdc++: Fix example preprocessor command in FAQ [PR103877] adds 917c7b136e8 libstdc++: Simplify std::allocator_traits<allocator<void>>: [...] adds 76a45931ab7 libstdc++: Avoid -Wzero-as-null-pointer-constant warning [P [...] adds 749ee73406d libstdc++: Fix comments in std::forward_list tests adds 7a2f2d91aa6 libstdc++: Add pretty printer for std::regex internals adds 1918067e2d0 libstdc++: Fix std::error_code pretty printer for versioned [...] adds 096228d84e9 libstdc++: Improvements to standard error category objects [...] adds 3633cc54284 libstdc++: Implement P1328 "Making std::type_info::operator [...] adds 6aa0859afaf libstdc++: Fix overconstrained std::string constructor [PR103919] adds 85a3442c85a Fortran: Fix ICE caused by missing error for untyped symbol [...]
No new revisions were added by this update.
Summary of changes: gcc/fortran/decl.c | 2 + gcc/fortran/error.c | 9 ++ gcc/fortran/gfortran.h | 1 + gcc/fortran/symbol.c | 2 +- gcc/testsuite/gfortran.dg/pr103258.f90 | 14 ++++ libstdc++-v3/config/abi/pre/gnu.ver | 3 + libstdc++-v3/doc/html/faq.html | 2 +- libstdc++-v3/doc/xml/faq.xml | 2 +- libstdc++-v3/include/bits/alloc_traits.h | 8 +- libstdc++-v3/include/bits/basic_string.h | 3 +- libstdc++-v3/include/bits/c++config | 10 ++- libstdc++-v3/include/bits/cow_string.h | 3 +- libstdc++-v3/include/bits/regex.h | 33 ++++---- libstdc++-v3/include/bits/regex.tcc | 8 +- libstdc++-v3/include/bits/regex_compiler.h | 9 +- libstdc++-v3/include/bits/regex_compiler.tcc | 37 ++++----- libstdc++-v3/include/bits/regex_error.h | 27 ++++-- libstdc++-v3/include/bits/regex_executor.tcc | 2 +- libstdc++-v3/include/bits/regex_scanner.tcc | 76 +++++++---------- libstdc++-v3/include/bits/stl_deque.h | 7 +- libstdc++-v3/include/std/version | 1 + libstdc++-v3/libsupc++/tinfo.cc | 7 ++ libstdc++-v3/libsupc++/typeinfo | 96 ++++++++++++++-------- libstdc++-v3/python/libstdcxx/v6/printers.py | 34 +++++++- libstdc++-v3/src/c++11/cxx11-ios_failure.cc | 25 +++--- libstdc++-v3/src/c++11/future.cc | 26 +++--- libstdc++-v3/src/c++11/regex.cc | 47 ++++++++++- .../testsuite/18_support/type_info/constexpr.cc | 48 +++++++++++ .../21_strings/basic_string/cons/char/103919.cc | 43 ++++++++++ .../23_containers/forward_list/operations/1.cc | 8 +- .../23_containers/forward_list/operations/2.cc | 2 +- .../23_containers/forward_list/operations/3.cc | 2 +- .../23_containers/forward_list/operations/4.cc | 2 +- .../23_containers/forward_list/operations/5.cc | 4 +- .../23_containers/forward_list/operations/6.cc | 4 +- .../23_containers/forward_list/operations/7.cc | 4 +- libstdc++-v3/testsuite/util/testsuite_regex.h | 27 +++--- 37 files changed, 438 insertions(+), 200 deletions(-) create mode 100644 gcc/testsuite/gfortran.dg/pr103258.f90 create mode 100644 libstdc++-v3/testsuite/18_support/type_info/constexpr.cc create mode 100644 libstdc++-v3/testsuite/21_strings/basic_string/cons/char/103919.cc