This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_gnu_cross_build/master-aarch64 in repository toolchain/ci/gcc.
from 6d331688fcb aarch64: Tweak FMAX/FMIN iterators adds c905e724711 lto-wrapper: fix memory corruption. adds 03f7843c3f1 [AArch64] Fix bootstrap failure due to missing ATTRIBUTE_UNUSED adds 9701f153f6d arm: enable cortex-a710 CPU adds a1ad0d84d7f attribs: Implement -Wno-attributes=vendor::attr [PR101940] adds 9598134a055 rs6000: Remove LINK_OS_EXTRA_SPEC{32,64} from --with-advanc [...] adds a5c9b9bc2b6 Fix typo in modref-13.c adds 992644c3511 Extend modref by side-effect analysis adds 5ba247ade1c AArch64: Remove shuffle pattern for rounding variant. adds eaec20fde58 Grow sbr_vector in ranger's on-entry cache as needed. adds 8ed62c929c7 middle-end: Add an RPO pass after successful vectorization adds 86ffc845b2d AArch64: do not keep negated mask and inverse mask live at [...] adds b0c83d59f44 path solver: Adjustments for use outside of the backward threader. adds 1200e211a82 arm: Initialize vector costing fields adds 1c04af34c9c Apply pattern initialization only when have_insn_for return true. adds 7c8a416da86 Adjust test to avoid target-specific failures [PR103161]. adds b83705b4778 Add a testcase for PR tree-optimization/102892 adds abc2f01914d Fortran: avoid NULL pointer dereferences adds c744ae08979 [COMMITTED] aarch64: [PR103170] Fix aarch64_simd_dup<mode> adds e82c3829716 Allow loop header copying when first iteration condition is known. new 8d36a0d2880 Daily bump.
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 | 362 +++++++++++++++++++++ gcc/DATESTAMP | 2 +- gcc/ada/ChangeLog | 152 +++++++++ gcc/attribs.c | 127 +++++++- gcc/attribs.h | 28 +- gcc/c-family/ChangeLog | 6 + gcc/c-family/c-pragma.c | 37 ++- gcc/common.opt | 9 +- gcc/config.gcc | 10 - gcc/config/aarch64/aarch64-builtins.c | 2 +- gcc/config/aarch64/aarch64-simd.md | 36 +- gcc/config/arm/arm-cpus.in | 11 + gcc/config/arm/arm-tables.opt | 3 + gcc/config/arm/arm-tune.md | 9 +- gcc/config/arm/arm.c | 35 +- gcc/doc/extend.texi | 19 ++ gcc/doc/invoke.texi | 22 +- gcc/fortran/ChangeLog | 10 + gcc/fortran/check.c | 3 + gcc/fortran/simplify.c | 6 + gcc/gimple-range-cache.cc | 35 +- gcc/gimple-range-path.cc | 41 ++- gcc/gimple-range-path.h | 17 +- gcc/internal-fn.c | 14 +- gcc/ipa-modref.c | 163 +++++++++- gcc/ipa-modref.h | 1 + gcc/ipa-pure-const.c | 108 +++--- gcc/ipa-utils.h | 4 + gcc/lto-wrapper.c | 2 +- gcc/opts.c | 20 ++ gcc/plugin.h | 4 +- gcc/testsuite/ChangeLog | 155 +++++++++ gcc/testsuite/c-c++-common/Wno-attributes-1.c | 55 ++++ gcc/testsuite/c-c++-common/Wno-attributes-2.c | 56 ++++ gcc/testsuite/c-c++-common/Wno-attributes-3.c | 9 + gcc/testsuite/gcc.c-torture/compile/vector-dup-1.c | 15 + gcc/testsuite/gcc.dg/pr102892-1.c | 21 ++ gcc/testsuite/gcc.dg/pr102892-2.c | 7 + .../gcc.dg/tree-ssa/builtin-sprintf-warn-16.c | 28 +- gcc/testsuite/gcc.dg/tree-ssa/modref-13.c | 2 +- gcc/testsuite/gcc.dg/tree-ssa/pr102906.c | 17 + gcc/testsuite/gcc.target/aarch64/shrn-combine-8.c | 2 +- gcc/testsuite/gcc.target/aarch64/shrn-combine-9.c | 2 +- .../gcc.target/aarch64/sve/pred-not-gen-1.c | 5 +- .../gcc.target/aarch64/sve/pred-not-gen-2.c | 5 +- .../gcc.target/aarch64/sve/pred-not-gen-3.c | 5 +- .../gcc.target/aarch64/sve/pred-not-gen-4.c | 5 +- gcc/testsuite/gcc.target/i386/auto-init-6.c | 6 +- gcc/toplev.c | 2 + gcc/tree-ssa-loop-ch.c | 51 ++- gcc/tree-vect-stmts.c | 17 + gcc/tree-vectorizer.c | 72 ++-- gcc/tree-vectorizer.h | 10 +- libgcc/ChangeLog | 5 + libstdc++-v3/ChangeLog | 13 + 55 files changed, 1650 insertions(+), 213 deletions(-) create mode 100644 gcc/testsuite/c-c++-common/Wno-attributes-1.c create mode 100644 gcc/testsuite/c-c++-common/Wno-attributes-2.c create mode 100644 gcc/testsuite/c-c++-common/Wno-attributes-3.c create mode 100644 gcc/testsuite/gcc.c-torture/compile/vector-dup-1.c create mode 100644 gcc/testsuite/gcc.dg/pr102892-1.c create mode 100644 gcc/testsuite/gcc.dg/pr102892-2.c create mode 100644 gcc/testsuite/gcc.dg/tree-ssa/pr102906.c