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-arm in repository toolchain/ci/gcc.
from 04a2cf3fd65 Daily bump. adds 5720c450fab AVX512FP16: Optimize _Float16 reciprocal for div and sqrt adds 9222481ffc6 rs6000: Fix wrong code generation for vec_sel [PR94613] adds 5f9ef1339e9 rs6000: Fold xxsel to vsel since they have same semantics adds 95bb87b2458 hardened conditionals new e399cde6f9c RISC-V: Handle zi* extension correctly for arch-canonicaliz [...] new 2dc835cd0b5 RISC-V: Fix wrong predicator for zero_extendsidi2_internal pattern
The 2 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/Makefile.in | 1 + .../doc/gnat_rm/security_hardening_features.rst | 40 ++ gcc/common.opt | 8 + gcc/config/i386/i386.c | 29 +- gcc/config/i386/i386.md | 44 ++- gcc/config/i386/sse.md | 63 ++- gcc/config/riscv/arch-canonicalize | 2 +- gcc/config/riscv/riscv.md | 2 +- gcc/config/rs6000/altivec.md | 84 +++- gcc/config/rs6000/rs6000-call.c | 62 +++ gcc/config/rs6000/rs6000.c | 19 +- gcc/config/rs6000/vector.md | 26 +- gcc/config/rs6000/vsx.md | 25 -- gcc/doc/invoke.texi | 19 + gcc/gimple-harden-conditionals.cc | 439 +++++++++++++++++++++ gcc/passes.def | 2 + gcc/testsuite/c-c++-common/torture/harden-comp.c | 14 + gcc/testsuite/c-c++-common/torture/harden-cond.c | 18 + gcc/testsuite/gcc.target/i386/avx512fp16-recip-1.c | 43 ++ gcc/testsuite/gcc.target/i386/avx512fp16-recip-2.c | 97 +++++ gcc/testsuite/gcc.target/i386/pr102464.c | 2 +- gcc/testsuite/gcc.target/powerpc/builtins-1.c | 2 +- gcc/testsuite/gcc.target/powerpc/pr94613.c | 47 +++ gcc/tree-pass.h | 3 + 24 files changed, 997 insertions(+), 94 deletions(-) create mode 100644 gcc/gimple-harden-conditionals.cc create mode 100644 gcc/testsuite/c-c++-common/torture/harden-comp.c create mode 100644 gcc/testsuite/c-c++-common/torture/harden-cond.c create mode 100644 gcc/testsuite/gcc.target/i386/avx512fp16-recip-1.c create mode 100644 gcc/testsuite/gcc.target/i386/avx512fp16-recip-2.c create mode 100644 gcc/testsuite/gcc.target/powerpc/pr94613.c