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-arm in repository toolchain/ci/gcc.
from acf4fe96f12 libstdc++: Allow exception classes to move fully-dynamic strings adds cd47cd4b5eb [PR103437] Make backup code for overflow conditional adds 38a0ee2649e analyzer: add regression test for leak false +ve [PR103526] adds 2835977f846 doc: Remove references to FreeBSD 1 and 2 adds 22a98240932 Darwin: Rewrite host PCH support [PR 55610]. adds 25abbb92496 [PATCH v2] configure: define TARGET_LIBC_GNUSTACK on musl adds c841dc0a4dd Adjust CPP_FOR_BUILD adds ea6ef320b0d Daily bump. adds 711084c9450 build: Implement --with-multilib-list for avr target adds 66e157188bd gcc: Fix "argument list too long" from install-plugins adds d8282345435 [Committed] New testcase for C++/71792, bitfields and auto adds 31c200c6e11 Make sure that we get unique test names if several DejaGnu [...] adds 6262e3a22b3 fortran: Fix setting of array lower bound for named arrays adds fe7c3ecff1f pch: Add support for PCH for relocatable executables [PR71934] adds 7e71909af2c x86: Speed up target attribute handling by using a cache adds 97ffef35532 testsuite: Fix up pr103456.c testcase [PR103456] adds f7854b90897 Add TARGET_IFUNC_REF_LOCAL_OK adds 06f2e7d49fc sve: combine nested if predicates adds add31efdc7b RISC-V: Add option defines for Scalar Cryptography adds 0962bff477a RISC-V: Add implied defines of Zk, Zkn and Zks new 37fbf9175b2 x86: Scan leal in PR target/83782 tests for x32
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 | 6 + configure | 2 +- configure.ac | 2 +- gcc/ChangeLog | 107 +++++ gcc/DATESTAMP | 2 +- gcc/Makefile.in | 2 +- gcc/ada/ChangeLog | 489 +++++++++++++++++++++ gcc/attribs.c | 2 +- gcc/attribs.h | 1 + gcc/c-family/c-pch.c | 15 - gcc/common/config/riscv/riscv-common.c | 38 +- gcc/config.gcc | 7 + gcc/config/avr/avr.c | 5 +- gcc/config/avr/genmultilib.awk | 16 + gcc/config/avr/t-avr | 1 + gcc/config/darwin.c | 2 +- gcc/config/host-darwin.c | 191 ++++++-- gcc/config/i386/i386-expand.c | 2 +- gcc/config/i386/i386-options.c | 26 +- gcc/config/i386/i386-protos.h | 1 + gcc/config/i386/i386.c | 25 +- gcc/config/pa/pa.c | 4 +- gcc/config/riscv/arch-canonicalize | 16 +- gcc/config/riscv/riscv-opts.h | 22 + gcc/config/riscv/riscv.opt | 3 + gcc/config/rs6000/rs6000.c | 30 +- gcc/configure | 7 +- gcc/configure.ac | 5 +- gcc/cp/ChangeLog | 12 + gcc/d/ChangeLog | 13 + gcc/doc/gty.texi | 9 + gcc/doc/install.texi | 4 - gcc/doc/tm.texi | 5 + gcc/doc/tm.texi.in | 2 + gcc/fortran/ChangeLog | 8 + gcc/fortran/trans-stmt.c | 17 +- gcc/gengtype-state.c | 32 ++ gcc/gengtype.c | 39 +- gcc/gengtype.h | 6 + gcc/ggc-common.c | 52 +++ gcc/ggc.h | 4 + gcc/ira-color.c | 33 +- gcc/output.h | 14 +- gcc/target.def | 8 + gcc/testsuite/ChangeLog | 83 ++++ gcc/testsuite/g++.dg/torture/pr71792.C | 42 ++ gcc/testsuite/gcc.dg/analyzer/pr103526.c | 50 +++ gcc/testsuite/gcc.dg/ubsan/pr103456.c | 2 +- .../gcc.target/aarch64/sve/pred-combine-and.c | 18 + gcc/testsuite/gcc.target/i386/pr83782-1.c | 26 ++ gcc/testsuite/gcc.target/i386/pr83782-2.c | 26 ++ gcc/testsuite/gfortran.dg/allocate_with_mold_4.f90 | 24 + .../gfortran.dg/allocate_with_source_26.f90 | 8 +- gcc/testsuite/lib/gcc-dg.exp | 14 +- gcc/tree-core.h | 2 +- gcc/tree-vect-stmts.c | 70 ++- gcc/tree-vectorizer.h | 9 + gcc/varasm.c | 11 +- libcpp/include/line-map.h | 4 +- libgomp/ChangeLog | 6 + libphobos/ChangeLog | 10 + libstdc++-v3/ChangeLog | 28 ++ lto-plugin/ChangeLog | 7 + 63 files changed, 1571 insertions(+), 156 deletions(-) create mode 100644 gcc/testsuite/g++.dg/torture/pr71792.C create mode 100644 gcc/testsuite/gcc.dg/analyzer/pr103526.c create mode 100644 gcc/testsuite/gcc.target/aarch64/sve/pred-combine-and.c create mode 100644 gcc/testsuite/gcc.target/i386/pr83782-1.c create mode 100644 gcc/testsuite/gcc.target/i386/pr83782-2.c create mode 100644 gcc/testsuite/gfortran.dg/allocate_with_mold_4.f90