This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_gnu_native_build/master-aarch64 in repository toolchain/ci/gcc.
from d5c6604f420 Add a simulate_record_decl lang hook adds 268b43d2592 middle-end/103038 - avoid ICE with -ftrivial-auto-var-init=pattern adds 6cc8aa65fde middle-end: Fix PR103007, add missing check on complex fms [...] adds 64bf0c835f8 IBM Z: ldist-{rawmemchr,strlen} tests require vector extensions adds c33a5cc9e7f RISC-V: Fix build errors with shNadd/shNadd.uw patterns in [...] adds f19791565d7 addS EAF_NOT_RETURNED_DIRECTLY adds 164bbf701ff tree-optimization/103029 - ensure vect loop versioning cons [...] adds a70c05120ae Static chain support in ipa-modref adds 18f0873d1e5 ipa-modref cleanup adds 2a83259f837 x86_64: Improved implementation of TImode rotations. adds 1fefb6cf62b Revert accidental commit. adds 4f032929ac9 libstdc++: Add some noexcept to std::valarray adds b4df2dd3f47 Daily bump. adds 62af7d9402f Fix wrong code caulsed by retslot EAF flags propagation [PR103040] adds ea2ab805acd IBM Z: Free bbs in s390_loop_unroll_adjust adds c081d0a3b02 middle-end/103033 - drop native_interpret_expr with .DEFERR [...] new 73658e70d9e Make sbitmap bitmap_set_bit and bitmap_clear_bit return cha [...]
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: ChangeLog | 5 + contrib/ChangeLog | 4 + gcc/ChangeLog | 142 ++++ gcc/DATESTAMP | 2 +- gcc/bitmap.c | 2 +- gcc/bitmap.h | 2 +- gcc/c/ChangeLog | 6 + gcc/config/i386/i386.md | 20 +- gcc/config/riscv/riscv.c | 5 +- gcc/config/s390/s390.c | 5 +- gcc/cp/ChangeLog | 7 + gcc/fold-const.c | 2 + gcc/gimple.c | 27 + gcc/gimple.h | 1 + gcc/internal-fn.c | 25 +- gcc/ipa-modref.c | 791 ++++++++++++++-------- gcc/ipa-modref.h | 1 + gcc/sbitmap.h | 28 +- gcc/testsuite/ChangeLog | 243 +++++++ gcc/testsuite/g++.dg/ipa/modref-1.C | 2 +- gcc/testsuite/g++.dg/pr103007.C | 19 + gcc/testsuite/g++.dg/pr103038.C | 5 + gcc/testsuite/g++.dg/torture/pr103040.C | 37 + gcc/testsuite/gcc.dg/ipa/modref-3.c | 20 + gcc/testsuite/gcc.dg/tree-ssa/ldist-rawmemchr-1.c | 1 + gcc/testsuite/gcc.dg/tree-ssa/ldist-rawmemchr-2.c | 1 + gcc/testsuite/gcc.dg/tree-ssa/ldist-strlen-1.c | 1 + gcc/testsuite/gcc.dg/tree-ssa/ldist-strlen-3.c | 1 + gcc/testsuite/gcc.dg/tree-ssa/modref-10.c | 20 + gcc/tree-core.h | 6 +- gcc/tree-ssa-structalias.c | 15 +- gcc/tree-ssa.c | 4 +- gcc/tree-vect-loop-manip.c | 17 + gcc/tree-vect-slp-patterns.c | 6 +- libstdc++-v3/ChangeLog | 5 + libstdc++-v3/include/std/valarray | 12 +- 36 files changed, 1149 insertions(+), 341 deletions(-) create mode 100644 gcc/testsuite/g++.dg/pr103007.C create mode 100644 gcc/testsuite/g++.dg/pr103038.C create mode 100644 gcc/testsuite/g++.dg/torture/pr103040.C create mode 100644 gcc/testsuite/gcc.dg/ipa/modref-3.c create mode 100644 gcc/testsuite/gcc.dg/tree-ssa/modref-10.c