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-stable-allmodconfig in repository toolchain/ci/gcc.
from 04e88369a7d diagnostics: Fix spelling in comment adds b16fd5fd8af coroutines: Fix cases where proxy variables are used [PR94879] adds aa94a22f5cb coroutines: Fix handling of target cleanup exprs [PR94883] adds 448c89d5904 coroutines: Fix handling of artificial vars [PR94886] adds b1983f4582b libstdc++: Avoid errors in allocator's noexcept-specifier ( [...] adds c416c52bcdb c++ ICE with nested requirement as default tpl parm[PR94827] adds 46eed414a33 Bump BASE-VER. adds b31ede6e376 ipa: Cgraph verification fix (PR 94856) adds 4bc0bb440ea Adjust crontab. adds 870b7834f06 rs6000, Fix header comment for intrinsic function _mm_movem [...] adds 66ec22b0d3f cse: Use simplify_replace_fn_rtx to process notes [PR94740] adds bf9155914f0 c: Fix ICE with _Atomic side-effect in nested fn param decl [...] adds ff1e6276dd7 cse: Add test case. [PR94740] adds f3043feb1b2 Daily bump. adds 7eee6d21961 document effective target fileio adds 070b4df8a06 libstdc++: Replace reserved identifier _T with _Tp (PR 94901) adds a5f2fb1ff17 libstdc++: Replace deduced return type in ranges::iter_move [...] new 187c854cc62 libstdc++: Add more tests for _E10, _E11 etc. (PR 94901) new bf1dde9790d libsanitizer: Add missing file and regen Makefile.in new d730fd95eeb gcc: Enable bits for sanitizer support on FreeBSD x86_64
The 3 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/BASE-VER | 2 +- gcc/ChangeLog | 43 ++++++ gcc/DATESTAMP | 2 +- gcc/c/ChangeLog | 8 ++ gcc/c/c-decl.c | 15 ++- gcc/cgraph.c | 8 +- gcc/config/freebsd.h | 21 +++ gcc/config/i386/darwin.h | 6 + gcc/config/i386/freebsd.h | 4 + gcc/config/i386/i386.c | 4 +- gcc/config/i386/i386.h | 7 + gcc/config/rs6000/emmintrin.h | 3 +- gcc/cp/ChangeLog | 32 +++++ gcc/cp/constraint.cc | 27 ++-- gcc/cp/coroutines.cc | 44 ++++-- gcc/cse.c | 118 +++++----------- gcc/doc/sourcebuild.texi | 6 + gcc/ipa-inline-transform.c | 2 + gcc/testsuite/ChangeLog | 30 +++++ gcc/testsuite/g++.dg/concepts/pr94827.C | 15 +++ gcc/testsuite/g++.dg/coroutines/pr94879-folly-1.C | 49 +++++++ gcc/testsuite/g++.dg/coroutines/pr94883-folly-2.C | 64 +++++++++ gcc/testsuite/g++.dg/coroutines/pr94886-folly-3.C | 15 +++ gcc/testsuite/g++.dg/ipa/pr94856.C | 18 +++ gcc/testsuite/gcc.dg/pr94842.c | 11 ++ gcc/testsuite/gcc.target/powerpc/pr94740.c | 11 ++ libsanitizer/ChangeLog | 10 ++ libsanitizer/configure.tgt | 2 + libsanitizer/sanitizer_common/Makefile.am | 1 + libsanitizer/sanitizer_common/Makefile.in | 3 + libstdc++-v3/ChangeLog | 44 ++++++ libstdc++-v3/include/bits/alloc_traits.h | 7 +- libstdc++-v3/include/bits/allocator.h | 5 +- libstdc++-v3/include/bits/iterator_concepts.h | 42 ++++-- libstdc++-v3/include/ext/malloc_allocator.h | 5 +- libstdc++-v3/include/ext/new_allocator.h | 5 +- libstdc++-v3/include/std/type_traits | 4 +- libstdc++-v3/testsuite/17_intro/badnames.cc | 85 ++++++++++++ libstdc++-v3/testsuite/20_util/allocator/89510.cc | 147 ++++++++++++++++++++ .../24_iterators/customization_points/92894.cc | 52 +++++++ .../24_iterators/indirect_callable/92894.cc | 55 ++++++++ .../testsuite/ext/malloc_allocator/89510.cc | 149 +++++++++++++++++++++ libstdc++-v3/testsuite/ext/new_allocator/89510.cc | 149 +++++++++++++++++++++ maintainer-scripts/ChangeLog | 5 + maintainer-scripts/crontab | 7 +- 45 files changed, 1194 insertions(+), 148 deletions(-) create mode 100644 gcc/testsuite/g++.dg/concepts/pr94827.C create mode 100644 gcc/testsuite/g++.dg/coroutines/pr94879-folly-1.C create mode 100644 gcc/testsuite/g++.dg/coroutines/pr94883-folly-2.C create mode 100644 gcc/testsuite/g++.dg/coroutines/pr94886-folly-3.C create mode 100644 gcc/testsuite/g++.dg/ipa/pr94856.C create mode 100644 gcc/testsuite/gcc.dg/pr94842.c create mode 100644 gcc/testsuite/gcc.target/powerpc/pr94740.c create mode 100644 libstdc++-v3/testsuite/17_intro/badnames.cc create mode 100644 libstdc++-v3/testsuite/20_util/allocator/89510.cc create mode 100644 libstdc++-v3/testsuite/24_iterators/customization_points/92894.cc create mode 100644 libstdc++-v3/testsuite/24_iterators/indirect_callable/92894.cc create mode 100644 libstdc++-v3/testsuite/ext/malloc_allocator/89510.cc create mode 100644 libstdc++-v3/testsuite/ext/new_allocator/89510.cc