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-aarch64-stable-defconfig in repository toolchain/ci/gcc.
from 7ee1c0413e2 c++: Hash table iteration for namespace-member spelling sug [...] adds 679dbc9dcec c++: Kill DECL_ANTICIPATED adds 1ad08b64cea libstdc++: Fix testcase by using terminate handler adds 324118378e4 libstdc++: Change test to work without 64-bit atomics adds 47f09ec9717 c++: Fix printing of C++20 template parameter object [PR97014] adds 9885183c081 rs6000: clean up headers in rs6000.c and rs6000-call.c adds b0b9b8f02a1 Daily bump. adds 8510e3301bd doc: Replace roudnevenl with roundevenl adds c34db4b6f8a Track access ranges in ipa-modref adds a1f77106ec3 Add gcc.dg/tree-ssa/modref-3.c testcase adds ce531b14126 options: Fix up opts_set saving/restoring for underlying va [...] adds 5af2a2d30d7 aix: apply aix_malloc more narrowly. adds 11bd94806d4 Daily bump. adds 35d2c6b6e8a PR fortran/97272 - Wrong answer from MAXLOC with character arg adds 4347d36f934 Daily bump. adds ab3f4b27abe [omp, ftracer] Don't duplicate blocks in SIMT region adds 21f65995e06 store-merging: Fix up -Wnarrowing warning adds 3c022a4c732 options: Save and restore opts_set for Optimization and Tar [...] adds b98d3cc5666 libstdc++: Add missing bugzilla PR numbers to ChangeLog adds d5243c46266 libstdc++: Test C++11 implementation of std::chrono::__deta [...] adds f33a43f9f7e libstdc++: Use correct duration for atomic_futex wait on cu [...] adds fc998c21c2c [omp, ftracer] Remove incorrect suggestion in ignore_bb_p adds bf490f06360 arm: Add missing part number for Neoverse V1 adds 255aa06d40d c++: Make spell corrections consistent adds 717e402dbf5 [omp, ftracer] Ignore IFN_GOMP_SIMT_XCHG_* in ignore_bb_p new f92a504fdd9 libstdc++: Make allocators throw bad_array_new_length on ov [...] new ac1c65ad1a1 support TARGET_MEM_REF in C/C++ error pretty-printing [PR97197] new bd431d26de0 Import various range-op fixes from ranger branch. new ea6da7f50fe Cleanup legacy_union and legacy intersect in value_range.
The 4 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: fixincludes/ChangeLog | 6 + fixincludes/fixincl.x | 12 +- fixincludes/inclhack.def | 12 +- fixincludes/tests/base/malloc.h | 2 + gcc/ChangeLog | 407 +++++++++++++++++++++ gcc/DATESTAMP | 2 +- gcc/c-family/c-pretty-print.c | 59 +++ gcc/config/arm/arm-cpus.in | 2 + gcc/config/rs6000/rs6000-call.c | 7 +- gcc/config/rs6000/rs6000.c | 9 +- gcc/cp/ChangeLog | 65 ++++ gcc/cp/cp-tree.h | 13 +- gcc/cp/cxx-pretty-print.c | 2 + gcc/cp/decl.c | 31 +- gcc/cp/error.c | 58 +++ gcc/cp/name-lookup.c | 165 +++++---- gcc/cp/pt.c | 10 +- gcc/doc/extend.texi | 2 +- gcc/fortran/ChangeLog | 17 + gcc/fortran/trans-intrinsic.c | 19 + gcc/gimple-ssa-store-merging.c | 2 +- gcc/ipa-modref-tree.c | 4 +- gcc/ipa-modref-tree.h | 76 +++- gcc/ipa-modref.c | 102 +++++- gcc/optc-save-gen.awk | 100 ++++- gcc/opth-gen.awk | 20 +- gcc/range-op.cc | 185 +++++++--- gcc/testsuite/ChangeLog | 101 +++++ gcc/testsuite/c-c++-common/spellcheck-reserved.c | 2 +- gcc/testsuite/gcc.dg/tree-ssa/modref-3.c | 31 ++ gcc/testsuite/gfortran.dg/pr97272.f90 | 19 + gcc/tracer.c | 18 + gcc/tree-ssa-alias.c | 38 +- gcc/value-range.cc | 67 ++-- libcc1/ChangeLog | 4 + libcc1/libcp1plugin.cc | 1 - libgomp/ChangeLog | 7 + libgomp/testsuite/libgomp.fortran/pr95654.f90 | 11 + libstdc++-v3/ChangeLog | 21 ++ libstdc++-v3/config/abi/pre/gnu.ver | 3 + libstdc++-v3/include/bits/atomic_futex.h | 2 +- libstdc++-v3/include/bits/functexcept.h | 3 + libstdc++-v3/include/ext/malloc_allocator.h | 10 +- libstdc++-v3/include/ext/new_allocator.h | 10 +- libstdc++-v3/include/std/memory_resource | 6 +- libstdc++-v3/src/c++11/functexcept.cc | 4 + libstdc++-v3/testsuite/18_support/96817.cc | 6 + .../value_init.cc => 20_util/allocator/lwg3190.cc} | 29 +- .../20_util/duration_cast/rounding_c++11.cc | 43 +++ .../29_atomics/atomic_float/value_init.cc | 4 +- libstdc++-v3/testsuite/30_threads/async/async.cc | 62 +++- 51 files changed, 1609 insertions(+), 282 deletions(-) create mode 100644 gcc/testsuite/gcc.dg/tree-ssa/modref-3.c create mode 100644 gcc/testsuite/gfortran.dg/pr97272.f90 create mode 100644 libgomp/testsuite/libgomp.fortran/pr95654.f90 copy libstdc++-v3/testsuite/{29_atomics/atomic_float/value_init.cc => 20_util/allo [...] create mode 100644 libstdc++-v3/testsuite/20_util/duration_cast/rounding_c++11.cc