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-release-aarch64-lts-defconfig in repository toolchain/ci/gcc.
from 7beafc829c5 Fix ICE in trans_associate_var adds c47f6f69745 c++: Fix SFINAE for invalid non-type tparm types. adds 9ca4280a921 Backport fix for PR c++/93753 from trunk. adds 8f34b644549 testsuite: Compile asan_test.C with -Wno-alloc-size-larger-than adds d37244b40d2 arm: Fix incorrect modes with 'borrow' operations [PR90311] adds 08ed34284f4 libstdc++: Avoid using sizeof with function types (PR 93470) adds 65d75048c44 libstdc++: make negative count safe with std::for_each_n adds 494166791ea Add 'noexcept' to std::lerp adds 9d0ad2d40ee PR libstdc++/91910 fix data race in Debug Mode destructors adds 128418afd7e libstdc++: Fix some warnings in filesystem tests adds 07d52e63d99 i386: Fix some -O0 avx2intrin.h and xopintrin.h intrinsic m [...] adds e50627ff8cd c++: Avoid ICE on infinite recursion with concepts. adds c5edde44f5b Daily bump. new 39bdebf3725 libstdc++: Fix call to __glibcxx_rwlock_init (PR 94069)
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 | 41 +++++++ gcc/DATESTAMP | 2 +- gcc/config/arm/arm.md | 99 +++++++++-------- gcc/config/arm/predicates.md | 21 ++++ gcc/config/i386/avx2intrin.h | 8 +- gcc/config/i386/xopintrin.h | 8 +- gcc/cp/ChangeLog | 21 ++++ gcc/cp/class.c | 2 + gcc/cp/constraint.cc | 4 + gcc/cp/pt.c | 15 ++- gcc/testsuite/ChangeLog | 25 +++++ gcc/testsuite/g++.dg/asan/asan_test.C | 2 +- gcc/testsuite/g++.dg/concepts/concepts-pr88395.C | 23 ++++ gcc/testsuite/g++.dg/ext/flexary36.C | 123 +++++++++++++++++++++ gcc/testsuite/g++.target/i386/pr94046-1.C | 55 +++++++++ gcc/testsuite/g++.target/i386/pr94046-2.C | 5 + gcc/testsuite/gcc.c-torture/execute/pr90311.c | 16 +++ libstdc++-v3/ChangeLog | 57 ++++++++++ libstdc++-v3/include/bits/refwrap.h | 3 +- libstdc++-v3/include/bits/stl_algo.h | 2 + libstdc++-v3/include/c_global/cmath | 8 +- libstdc++-v3/include/std/shared_mutex | 2 +- libstdc++-v3/src/c++11/debug.cc | 21 ++-- .../for_each/for_each_n_debug.cc} | 43 ++----- .../testsuite/27_io/filesystem/operations/all.cc | 2 +- .../testsuite/27_io/filesystem/operations/copy.cc | 2 +- .../27_io/filesystem/operations/file_size.cc | 12 +- .../30_threads/shared_timed_mutex/94069.cc | 28 +++++ .../experimental/filesystem/operations/copy.cc | 2 +- .../filesystem/operations/file_size.cc | 12 +- 30 files changed, 537 insertions(+), 127 deletions(-) create mode 100644 gcc/testsuite/g++.dg/concepts/concepts-pr88395.C create mode 100644 gcc/testsuite/g++.dg/ext/flexary36.C create mode 100644 gcc/testsuite/g++.target/i386/pr94046-1.C create mode 100644 gcc/testsuite/g++.target/i386/pr94046-2.C create mode 100644 gcc/testsuite/gcc.c-torture/execute/pr90311.c copy libstdc++-v3/testsuite/{27_io/filesystem/operations/file_size.cc => 25_algori [...] create mode 100644 libstdc++-v3/testsuite/30_threads/shared_timed_mutex/94069.cc