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 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 [...] new 6b7a246d137 Remove usage of IRA_REGION_AUTODETECT new 177b800f5fc opts: Remove AUTODETECT_VALUE usage.
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/builtins.c | 3 +- gcc/builtins.h | 1 + gcc/common.opt | 8 +- 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/flag-types.h | 4 - gcc/internal-fn.c | 30 ++ gcc/internal-fn.def | 1 + gcc/omp-low.c | 6 +- gcc/optabs.def | 1 + 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 +++++ gcc/toplev.c | 8 +- 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 ++ 35 files changed, 1259 insertions(+), 92 deletions(-) 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 libgomp/testsuite/libgomp.c-c++-common/alloc-10.c create mode 100644 libgomp/testsuite/libgomp.fortran/alloc-12.f90