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_LTO in repository toolchain/ci/gcc.
from c08b5a0321d Daily bump. adds b79bfb7f526 Daily bump. adds d64bfed0f7d Daily bump. adds 65cff53f37a Daily bump. adds e81ea468dfc Improve atomic store implementation on hppa-linux. adds a25bfec3aac Fortran: NULL() is not interoperable adds e6dcc146401 Fortran: BOZ literal constants are not interoperable adds 3c830e6d17b Fortran: CASE selector expressions must be scalar adds 3b2b18144c7 Daily bump. adds 9f5fe893423 Daily bump. adds 6edb3bc245f Daily bump. adds 4ab017fbdfb Daily bump. adds 8a65a524d6e Daily bump. adds fd6acb47843 Daily bump. adds 21a0bd00f62 Use optab_libfunc to access sync_lock_test_and_set libfunc [...] adds 2c8e273ed11 Generate illegal instruction fault if LWS syscall returns -EFAULT. adds 718b47e1cd4 Fortran: avoid several NULL pointer dereferences during err [...] adds d4a1d3c4b37 Daily bump. adds 24ee44c37a2 c++: Allow constexpr decltype(auto) [PR102229] adds 306587d2240 Daily bump. adds b22ace96c57 libstdc++: Fix std::allocator<void> for versioned namespace adds e15485ab1b2 Daily bump. adds a03aae8d9f5 libstdc++: Fix std::error_code pretty printer for versioned [...] adds 4c64143f326 libstdc++: Fix overconstrained std::string constructor [PR103919] adds ad54d3fb8f0 libstdc++: Make Asan detection work for Clang [PR103453] adds 5e0ef5621b5 libstdc++: Initialize member in std::match_results [PR103549] adds bae757f8097 libstdc++: Clear RB tree after moving elements [PR103501] adds 39e5b756e14 libstdc++: Fix example preprocessor command in FAQ [PR103877] adds 0bc256f8e1a libstdc++: Fix definition of _GLIBCXX_NO_SLEEP config macro adds 226210894e5 libstdc++: Fix std::char_traits<C>::move for constexpr new 6c4d89b09c0 Daily bump.
The 1 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 | 17 ++++ gcc/DATESTAMP | 2 +- gcc/config/pa/pa-protos.h | 1 - gcc/config/pa/pa.c | 76 --------------- gcc/config/pa/pa.md | 40 ++++---- gcc/cp/ChangeLog | 10 ++ gcc/cp/decl.c | 58 ++++++++---- gcc/cp/pt.c | 13 --- gcc/fortran/ChangeLog | 41 ++++++++ gcc/fortran/check.c | 12 +++ gcc/fortran/expr.c | 3 +- gcc/fortran/match.c | 16 +++- gcc/fortran/primary.c | 1 + gcc/fortran/resolve.c | 9 +- gcc/testsuite/ChangeLog | 41 ++++++++ gcc/testsuite/g++.dg/cpp1y/decltype-auto5.C | 35 +++++++ gcc/testsuite/gfortran.dg/illegal_boz_arg_3.f90 | 7 ++ gcc/testsuite/gfortran.dg/pr101329.f90 | 13 +++ gcc/testsuite/gfortran.dg/pr102332.f90 | 69 ++++++++++++++ gcc/testsuite/gfortran.dg/select_10.f90 | 25 +++++ libgcc/ChangeLog | 7 ++ libgcc/config/pa/linux-atomic.c | 6 ++ libstdc++-v3/ChangeLog | 98 +++++++++++++++++++ libstdc++-v3/acinclude.m4 | 2 +- libstdc++-v3/config.h.in | 6 +- .../config/allocator/malloc_allocator_base.h | 10 +- libstdc++-v3/config/allocator/new_allocator_base.h | 10 +- libstdc++-v3/configure | 2 +- libstdc++-v3/doc/html/faq.html | 2 +- libstdc++-v3/doc/xml/faq.xml | 2 +- libstdc++-v3/include/bits/alloc_traits.h | 104 +++++++++++++++++++++ libstdc++-v3/include/bits/allocator.h | 38 +++----- libstdc++-v3/include/bits/basic_string.h | 6 +- libstdc++-v3/include/bits/char_traits.h | 40 ++++++-- libstdc++-v3/include/bits/regex.h | 4 +- libstdc++-v3/include/bits/stl_tree.h | 6 +- libstdc++-v3/include/ext/extptr_allocator.h | 5 + libstdc++-v3/python/libstdcxx/v6/printers.py | 2 +- .../21_strings/basic_string/cons/char/103919.cc | 43 +++++++++ .../requirements/constexpr_functions_c++20.cc | 23 ++++- .../23_containers/map/allocator/move_cons.cc | 2 +- .../23_containers/multimap/allocator/move_cons.cc | 2 +- .../23_containers/multiset/allocator/103501.cc | 32 +++++++ .../23_containers/set/allocator/103501.cc | 32 +++++++ 44 files changed, 787 insertions(+), 186 deletions(-) create mode 100644 gcc/testsuite/g++.dg/cpp1y/decltype-auto5.C create mode 100644 gcc/testsuite/gfortran.dg/illegal_boz_arg_3.f90 create mode 100644 gcc/testsuite/gfortran.dg/pr101329.f90 create mode 100644 gcc/testsuite/gfortran.dg/pr102332.f90 create mode 100644 gcc/testsuite/gfortran.dg/select_10.f90 create mode 100644 libstdc++-v3/testsuite/21_strings/basic_string/cons/char/103919.cc create mode 100644 libstdc++-v3/testsuite/23_containers/multiset/allocator/103501.cc create mode 100644 libstdc++-v3/testsuite/23_containers/set/allocator/103501.cc