This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_kernel/gnu-master-arm-lts-allmodconfig in repository toolchain/ci/gcc.
from fc186077486 libphobos: Merge upstream phobos 99003a75a adds 3f81d84c9ff libphobos: Merge upstream phobos bf0d0a37c adds 36bc6c65209 rs6000: Skip DWARF5 and -fcompare-debug testcases on AIX. adds a2c0fa35d0d libstdc++: Fix redundant assignment (PR 94629) adds 7ab9c2430ff libstdc++: Remove operator!= overloads for unordered containers adds 717e91dbc44 libstdc++: Define operator<=> for std::stack and std::queue adds 79b9d18ea1b Daily bump. adds 85d8c05a02b Fix declare copyout in libgomp.oacc-c++/declare-pr94120.C adds 38acc41d6d7 PR 91800 - reject Hollerith constants as type initializer. adds 9b4d38df3f1 Fix spacing in symtab_node::dump_references. adds aeb430aadc3 PR fortran/93364 - ICE in gfc_set_array_spec, at fortran/ar [...] adds 48c82310947 Fix ICE on invalid calls_comdat_local flag [pr94582] adds aa576f2a860 c++: Template argument hashing [pr94454] adds 7fcb93431ef c++: Expr pack expansion equality [pr94454] adds a6f400239d7 c++: tpl-tpl-parms are not canonicalizable types [pr94454] adds 697b94cfaef libstdc++: Avoid illegal argument to verbose in dg-test callback adds 5da301cbd81 aarch64: Fix vector builds used by SVE vec_init [PR94668]
No new revisions were added by this update.
Summary of changes: gcc/ChangeLog | 21 ++++ gcc/DATESTAMP | 2 +- gcc/config/aarch64/aarch64.c | 26 ++-- gcc/cp/ChangeLog | 18 +++ gcc/cp/pt.c | 88 ++++++++----- gcc/cp/tree.c | 24 +++- gcc/fortran/ChangeLog | 13 ++ gcc/fortran/array.c | 4 + gcc/fortran/decl.c | 9 ++ gcc/ipa-comdats.c | 9 ++ gcc/symtab.c | 14 +-- gcc/testsuite/ChangeLog | 29 +++++ gcc/testsuite/g++.dg/debug/dwarf2/pr85550.C | 1 + gcc/testsuite/g++.dg/debug/pr94272.C | 1 + gcc/testsuite/g++.dg/debug/pr94281.C | 1 + gcc/testsuite/g++.dg/debug/pr94323.C | 1 + gcc/testsuite/g++.dg/torture/pr94582.C | 87 +++++++++++++ gcc/testsuite/gcc.target/aarch64/sve/pr94668.c | 8 ++ gcc/testsuite/gfortran.dg/hollerith_9.f90 | 7 ++ gcc/testsuite/gfortran.dg/pr93364.f90 | 13 ++ gcc/tree-inline.c | 1 + libgomp/ChangeLog | 6 + .../testsuite/libgomp.oacc-c++/declare-pr94120.C | 1 + libphobos/src/MERGE | 2 +- libphobos/src/std/array.d | 138 +++++++++++++-------- libstdc++-v3/ChangeLog | 24 ++++ libstdc++-v3/include/bits/stl_queue.h | 13 ++ libstdc++-v3/include/bits/stl_stack.h | 13 ++ libstdc++-v3/include/bits/unordered_map.h | 4 + libstdc++-v3/include/bits/unordered_set.h | 4 + libstdc++-v3/include/debug/formatter.h | 1 - libstdc++-v3/include/debug/unordered_map | 5 +- libstdc++-v3/include/debug/unordered_set | 5 +- .../testsuite/23_containers/queue/cmp_c++20.cc | 60 +++++++++ .../testsuite/23_containers/stack/cmp_c++20.cc | 60 +++++++++ libstdc++-v3/testsuite/lib/libstdc++.exp | 2 +- 36 files changed, 605 insertions(+), 110 deletions(-) create mode 100644 gcc/testsuite/g++.dg/torture/pr94582.C create mode 100644 gcc/testsuite/gcc.target/aarch64/sve/pr94668.c create mode 100644 gcc/testsuite/gfortran.dg/hollerith_9.f90 create mode 100644 gcc/testsuite/gfortran.dg/pr93364.f90 create mode 100644 libstdc++-v3/testsuite/23_containers/queue/cmp_c++20.cc create mode 100644 libstdc++-v3/testsuite/23_containers/stack/cmp_c++20.cc