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 8c6bef0a33e [Ada] Do not make procedure call with only tag-indeternmina [...] adds d2a89866660 Put virtual operands into loop-closed SSA adds 4e82205b680 Integrate nonzero bits with irange. adds 1a770b01ef4 Prevent another potential stack overflow issue when demangl [...] adds a7ccdfa17e5 MAINTAINERS: fix alphabetic sorting adds 483bd9a0283 Use default lower bound for vector types in debug info adds 104b9875c78 Fix crash on circular array types with -fdump switches adds 88b9d090aa1 gcc-descr: by default show revision for HEAD adds 10b502fb783 Keep virtual SSA up-to-date in vectorizer adds 683f1184397 OpenMP: Move omp requires checks to libgomp adds 3769ad4ccea Revert update-ssa assert in vectorizer
No new revisions were added by this update.
Summary of changes: MAINTAINERS | 2 +- contrib/git-descr.sh | 2 +- gcc/c/c-parser.cc | 19 ++- gcc/config/gcn/mkoffload.cc | 27 +++- gcc/config/nvptx/mkoffload.cc | 29 +++- gcc/cp/parser.cc | 19 ++- gcc/dwarf2out.cc | 9 +- gcc/fortran/openmp.cc | 4 - gcc/fortran/parse.cc | 22 ++- gcc/gimple-loop-jam.cc | 2 +- gcc/lto-cgraph.cc | 117 +++++++++++++- gcc/omp-low.cc | 5 + gcc/testsuite/c-c++-common/gomp/requires-4.c | 2 - .../c-c++-common/gomp/reverse-offload-1.c | 2 +- .../c-c++-common/gomp/target-device-ancestor-2.c | 10 +- .../c-c++-common/gomp/target-device-ancestor-3.c | 2 +- .../c-c++-common/gomp/target-device-ancestor-4.c | 4 +- .../c-c++-common/gomp/target-device-ancestor-5.c | 2 +- gcc/testsuite/gfortran.dg/gomp/requires-8.f90 | 14 +- .../gfortran.dg/gomp/target-device-ancestor-2.f90 | 70 +------- .../gfortran.dg/gomp/target-device-ancestor-2a.f90 | 80 ++++++++++ .../gfortran.dg/gomp/target-device-ancestor-3.f90 | 6 +- .../gfortran.dg/gomp/target-device-ancestor-4.f90 | 6 +- .../gfortran.dg/gomp/target-device-ancestor-5.f90 | 8 +- gcc/tree-if-conv.cc | 2 +- gcc/tree-loop-distribution.cc | 2 +- gcc/tree-parloops.cc | 10 +- gcc/tree-pretty-print.cc | 6 +- gcc/tree-ssa-dce.cc | 3 +- gcc/tree-ssa-loop-manip.cc | 23 +-- gcc/tree-ssa-loop-manip.h | 3 - gcc/tree-ssa-loop-unswitch.cc | 4 +- gcc/tree-vect-loop-manip.cc | 14 +- gcc/tree-vect-stmts.cc | 18 ++- gcc/tree-vectorizer.h | 4 + gcc/value-range-storage.cc | 9 +- gcc/value-range.cc | 177 +++++++++++++++++++-- gcc/value-range.h | 20 ++- include/gomp-constants.h | 9 +- libgomp/libgomp-plugin.h | 2 +- libgomp/libgomp.texi | 8 +- libgomp/oacc-host.c | 4 +- libgomp/oacc-init.c | 16 +- libgomp/plugin/plugin-gcn.c | 6 +- libgomp/plugin/plugin-nvptx.c | 9 +- libgomp/target.c | 76 ++++++++- .../libgomp.c-c++-common/requires-1-aux.c | 11 ++ .../testsuite/libgomp.c-c++-common/requires-1.c | 24 +++ .../libgomp.c-c++-common/requires-2-aux.c | 9 ++ .../testsuite/libgomp.c-c++-common/requires-2.c | 25 +++ .../libgomp.c-c++-common/requires-3-aux.c | 11 ++ .../testsuite/libgomp.c-c++-common/requires-3.c | 24 +++ .../libgomp.c-c++-common/requires-4-aux.c | 13 ++ .../testsuite/libgomp.c-c++-common/requires-4.c | 23 +++ .../libgomp.c-c++-common/requires-5-aux.c | 11 ++ .../testsuite/libgomp.c-c++-common/requires-5.c | 21 +++ .../testsuite/libgomp.c-c++-common/requires-6.c | 17 ++ .../libgomp.c-c++-common/requires-7-aux.c | 11 ++ .../testsuite/libgomp.c-c++-common/requires-7.c | 24 +++ .../testsuite/libgomp.fortran/requires-1-aux.f90 | 14 ++ libgomp/testsuite/libgomp.fortran/requires-1.f90 | 26 +++ libiberty/rust-demangle.c | 17 ++ liboffloadmic/plugin/libgomp-plugin-intelmic.cpp | 6 +- 63 files changed, 980 insertions(+), 195 deletions(-) create mode 100644 gcc/testsuite/gfortran.dg/gomp/target-device-ancestor-2a.f90 create mode 100644 libgomp/testsuite/libgomp.c-c++-common/requires-1-aux.c create mode 100644 libgomp/testsuite/libgomp.c-c++-common/requires-1.c create mode 100644 libgomp/testsuite/libgomp.c-c++-common/requires-2-aux.c create mode 100644 libgomp/testsuite/libgomp.c-c++-common/requires-2.c create mode 100644 libgomp/testsuite/libgomp.c-c++-common/requires-3-aux.c create mode 100644 libgomp/testsuite/libgomp.c-c++-common/requires-3.c create mode 100644 libgomp/testsuite/libgomp.c-c++-common/requires-4-aux.c create mode 100644 libgomp/testsuite/libgomp.c-c++-common/requires-4.c create mode 100644 libgomp/testsuite/libgomp.c-c++-common/requires-5-aux.c create mode 100644 libgomp/testsuite/libgomp.c-c++-common/requires-5.c create mode 100644 libgomp/testsuite/libgomp.c-c++-common/requires-6.c create mode 100644 libgomp/testsuite/libgomp.c-c++-common/requires-7-aux.c create mode 100644 libgomp/testsuite/libgomp.c-c++-common/requires-7.c create mode 100644 libgomp/testsuite/libgomp.fortran/requires-1-aux.f90 create mode 100644 libgomp/testsuite/libgomp.fortran/requires-1.f90