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-aarch64-bootstrap in repository toolchain/ci/gcc.
from b0321032658 obstack.h __PTR_ALIGN vs. ubsan adds 424a4a463ac Fortran: Add gfc_simple_for_loop aux function adds e1223ea2f48 IBM Z: TPF: Add cc clobber to profiling expanders adds 3ae5e6fbc89 Small tweak to comments in range_cannot_be_superflat adds 6185b9a93cb AVX512FP16: Support load/store/abs intrinsics. adds f6afc926dc8 AVX512FP16: Add reduce operators(add/mul/min/max). adds 69dc9c59e91 AVX512FP16: Add complex conjugation intrinsic instructions. adds 6b0e0b29c63 AVX512FP16: Add permutation and mask blend intrinsics. adds 7e5e44bd172 path solver: Use range_on_path_entry instead of looking at [...] adds fec75ab8c02 Check for BB before calling register_outgoing_edges. new 3087d1b0a2c Set bound/cmp/control for until wrap loop.
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/ada/gcc-interface/decl.c | 6 +- gcc/config/i386/avx512fp16intrin.h | 256 +++++++++++++++++++++ gcc/config/i386/avx512fp16vlintrin.h | 236 +++++++++++++++++++ gcc/config/s390/tpf.md | 6 +- gcc/fortran/trans-expr.c | 34 +++ gcc/fortran/trans.h | 2 + gcc/gimple-range-fold.cc | 8 +- gcc/gimple-range-path.cc | 33 +-- gcc/gimple-range-path.h | 1 - gcc/testsuite/gcc.dg/pr102087.c | 35 +++ gcc/testsuite/gcc.target/i386/avx512fp16-13.c | 140 +++++++++++ gcc/testsuite/gcc.target/i386/avx512fp16-14.c | 85 +++++++ .../gcc.target/i386/avx512fp16-conjugation-1.c | 34 +++ .../gcc.target/i386/avx512fp16-reduce-op-1.c | 132 +++++++++++ .../gcc.target/i386/avx512fp16vl-conjugation-1.c | 55 +++++ .../gcc.target/i386/avx512fp16vl-reduce-op-1.c | 244 ++++++++++++++++++++ gcc/tree-ssa-loop-niter.c | 16 +- 17 files changed, 1280 insertions(+), 43 deletions(-) create mode 100644 gcc/testsuite/gcc.dg/pr102087.c create mode 100644 gcc/testsuite/gcc.target/i386/avx512fp16-13.c create mode 100644 gcc/testsuite/gcc.target/i386/avx512fp16-14.c create mode 100644 gcc/testsuite/gcc.target/i386/avx512fp16-conjugation-1.c create mode 100644 gcc/testsuite/gcc.target/i386/avx512fp16-reduce-op-1.c create mode 100644 gcc/testsuite/gcc.target/i386/avx512fp16vl-conjugation-1.c create mode 100644 gcc/testsuite/gcc.target/i386/avx512fp16vl-reduce-op-1.c