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_lto in repository toolchain/ci/gcc.
from 9583b26f370 var-tracking: Fix a wrong-debug issue caused by my r10-7665 [...] adds 74ccca380cd Fortran: handle initialization of derived type parameter ar [...] adds 8cd172ebedf Daily bump. adds 6d97315a4e1 Adjust testcase for O2 vectorization enabling. adds 4e5bc4e4506 [PR/target 100316] Allow constant address for __builtin___c [...] adds 9abf8c95341 options: use cl_optimization_hash. adds 6f966f06146 ldist: Recognize strlen and rawmemchr like loops adds 6e3c4bfd0c0 IBM Z: Provide rawmemchr{qi,hi,si} expander adds 07dd3bcda17 openmp: Add omp_set_num_teams, omp_get_max_teams, omp_[gs]e [...] adds f70977936a3 libgomp: Add tests for omp_atv_serialized and deprecate omp [...]
No new revisions were added by this update.
Summary of changes: gcc/ChangeLog | 12 + gcc/DATESTAMP | 2 +- gcc/builtins.c | 13 +- gcc/builtins.h | 1 + gcc/config/s390/s390-protos.h | 2 + gcc/config/s390/s390.c | 69 +++ gcc/config/s390/s390.md | 7 + gcc/config/s390/vector.md | 26 ++ gcc/config/s390/vx-builtins.md | 26 -- gcc/doc/md.texi | 7 + gcc/fortran/ChangeLog | 7 + gcc/fortran/decl.c | 10 +- gcc/internal-fn.c | 30 ++ gcc/internal-fn.def | 1 + gcc/omp-low.c | 6 +- gcc/optabs.def | 1 + gcc/testsuite/ChangeLog | 11 + gcc/testsuite/gcc.c-torture/compile/pr100316.c | 18 + gcc/testsuite/gcc.dg/tree-ssa/ldist-rawmemchr-1.c | 72 +++ gcc/testsuite/gcc.dg/tree-ssa/ldist-rawmemchr-2.c | 83 ++++ gcc/testsuite/gcc.dg/tree-ssa/ldist-strlen-1.c | 100 ++++ gcc/testsuite/gcc.dg/tree-ssa/ldist-strlen-2.c | 58 +++ gcc/testsuite/gcc.dg/tree-ssa/ldist-strlen-3.c | 12 + gcc/testsuite/gcc.target/s390/rawmemchr-1.c | 99 ++++ .../gfortran.dg/parameter_array_init_8.f90 | 25 + gcc/testsuite/gnat.dg/unroll1.adb | 2 +- gcc/tree-loop-distribution.c | 518 +++++++++++++++++++-- gcc/tree.c | 19 +- libgomp/allocator.c | 2 +- libgomp/env.c | 7 + libgomp/fortran.c | 40 ++ libgomp/icv.c | 30 ++ libgomp/libgomp.h | 2 + libgomp/libgomp.map | 10 + libgomp/omp.h.in | 7 +- libgomp/omp_lib.f90.in | 32 +- libgomp/omp_lib.h.in | 4 + libgomp/teams.c | 4 +- libgomp/testsuite/libgomp.c-c++-common/alloc-10.c | 25 + libgomp/testsuite/libgomp.fortran/alloc-12.f90 | 28 ++ 40 files changed, 1337 insertions(+), 91 deletions(-) create mode 100644 gcc/testsuite/gcc.c-torture/compile/pr100316.c create mode 100644 gcc/testsuite/gcc.dg/tree-ssa/ldist-rawmemchr-1.c create mode 100644 gcc/testsuite/gcc.dg/tree-ssa/ldist-rawmemchr-2.c create mode 100644 gcc/testsuite/gcc.dg/tree-ssa/ldist-strlen-1.c create mode 100644 gcc/testsuite/gcc.dg/tree-ssa/ldist-strlen-2.c create mode 100644 gcc/testsuite/gcc.dg/tree-ssa/ldist-strlen-3.c create mode 100644 gcc/testsuite/gcc.target/s390/rawmemchr-1.c create mode 100644 gcc/testsuite/gfortran.dg/parameter_array_init_8.f90 create mode 100644 libgomp/testsuite/libgomp.c-c++-common/alloc-10.c create mode 100644 libgomp/testsuite/libgomp.fortran/alloc-12.f90