This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_gcc_bootstrap/master-arm-bootstrap_debug in repository toolchain/ci/gcc.
from 8eb329e9635 c++: dependent noexcept-spec on defaulted comparison op [PR96242] adds 353f8fcc2e6 Daily bump. adds 8103623923a rs6000: Disable MMA if no VSX support [PR103627] adds e66ba0f55c0 rs6000: Move the hunk affecting VSX/ALTIVEC ahead [PR103627] adds 70430001b74 middle-end/104402 - split out _Complex compares from COND_EXPRs adds db95441cf53 Check always_inline flag in s390_can_inline_p [PR104327] adds 12aae3b93ae AArch32: correct dot-product RTL patterns. adds f2d13164511 AArch32: correct usdot-product RTL patterns. adds 5d2a330dee3 testsuite: Fix up testsuite/gcc.c-torture/execute/builtins/ [...] new f30e65e94d1 testsuite: avoid analyzer asm failures on non-Linux new 9d2c0fad597 analyzer: fixes to memcpy [PR103872] new 0c04ac0e158 analyzer: fix ICE on realloc of non-heap [PR104417]
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/ChangeLog | 19 +++ gcc/DATESTAMP | 2 +- gcc/analyzer/region-model-impl-calls.cc | 28 ++-- gcc/analyzer/sm-taint.cc | 9 -- gcc/config/arm/arm_neon.h | 68 +++++++++ gcc/config/arm/arm_neon_builtins.def | 6 +- gcc/config/arm/neon.md | 153 +++++++++++++-------- gcc/config/rs6000/rs6000.cc | 31 +++-- gcc/config/s390/s390.cc | 64 ++++++--- gcc/cp/ChangeLog | 18 +++ gcc/gimple-expr.cc | 20 ++- gcc/testsuite/ChangeLog | 11 ++ gcc/testsuite/gcc.c-torture/compile/pr104327.c | 15 ++ .../gcc.c-torture/execute/builtins/lib/chk.c | 11 ++ gcc/testsuite/gcc.dg/analyzer/asm-x86-1.c | 2 +- gcc/testsuite/gcc.dg/analyzer/asm-x86-lp64-1.c | 2 +- gcc/testsuite/gcc.dg/analyzer/asm-x86-lp64-2.c | 2 +- gcc/testsuite/gcc.dg/analyzer/memcpy-1.c | 125 +++++++++++++++++ gcc/testsuite/gcc.dg/analyzer/pr104417.c | 7 + gcc/testsuite/gcc.dg/analyzer/taint-size-1.c | 9 ++ .../asm-x86-linux-array_index_mask_nospec.c | 2 +- .../torture/asm-x86-linux-cpuid-paravirt-1.c | 2 +- .../torture/asm-x86-linux-cpuid-paravirt-2.c | 2 +- .../gcc.dg/analyzer/torture/asm-x86-linux-cpuid.c | 2 +- .../torture/asm-x86-linux-rdmsr-paravirt.c | 2 +- .../gcc.dg/analyzer/torture/asm-x86-linux-rdmsr.c | 2 +- .../asm-x86-linux-wfx_get_ps_timeout-full.c | 2 +- .../asm-x86-linux-wfx_get_ps_timeout-reduced.c | 2 +- gcc/testsuite/gcc.dg/torture/pr104402.c | 8 ++ gcc/testsuite/gcc.target/arm/simd/vdot-2-1.c | 59 +++++++- gcc/testsuite/gcc.target/arm/simd/vdot-2-2.c | 60 +++++++- gcc/testsuite/gcc.target/arm/simd/vdot-compile.c | 26 +++- gcc/testsuite/gcc.target/arm/simd/vdot-exec.c | 24 +++- gcc/testsuite/gcc.target/powerpc/pr103627-1.c | 16 +++ gcc/testsuite/gcc.target/powerpc/pr103627-2.c | 16 +++ gcc/testsuite/gcc.target/powerpc/pr103627-3.c | 20 +++ gcc/tree-cfg.cc | 9 +- 37 files changed, 715 insertions(+), 141 deletions(-) create mode 100644 gcc/testsuite/gcc.c-torture/compile/pr104327.c create mode 100644 gcc/testsuite/gcc.dg/analyzer/pr104417.c create mode 100644 gcc/testsuite/gcc.dg/torture/pr104402.c create mode 100644 gcc/testsuite/gcc.target/powerpc/pr103627-1.c create mode 100644 gcc/testsuite/gcc.target/powerpc/pr103627-2.c create mode 100644 gcc/testsuite/gcc.target/powerpc/pr103627-3.c