This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_gcc_check/master-aarch64 in repository toolchain/ci/gcc.
from 7d6da11fce0 openmp: Honor OpenMP 5.1 num_teams lower bound adds 68d62cb2063 fortran: Ignore unused args in scalarization [PR97896] adds a54ce8865a8 libstdc++: Print assertion messages to stderr [PR59675] adds b7e20480630 openmp: Relax handling of implicit map vs. existing device [...] adds 1b62cddcf09 Fix ipa-modref pure/const discovery adds aa1fd30df56 jit: fix -Werror=format-overflow= in testsuite [PR103199] adds 83310a08a2b libbacktrace: fix UBSAN issues adds 6849c71c065 testsuite: Filter out TSVC test on Power [PR103051] adds 847f587dc47 Fortran: Use build_debug_expr_decl to create DEBUG_DECL_EXPRs adds f49c7a4fb23 libgomp: Unbreak gcn offload build adds 4526ec20f17 Fix ICE in tree-ssa-structalias.c adds 82de09ab17c Fix exit condition in ipa_make_function_pure adds 48c6cac9cae Fortran/openmp: Fix '!$omp end' adds 526e1639aa7 aarch64: Detect more consecutive MEMs adds 15aba5a67c6 aarch64: Fold aarch64_sve_op_count into aarch64_vec_op_count adds 26122469dff aarch64: Remove vectype from latency tests adds 902b7c9e183 aarch64: Get floatness from stmt_info adds 6756706ea63 aarch64: Use real scalar op counts adds 1a5288fe3dc aarch64: Use an array of aarch64_vec_op_counts adds a82ffd43619 aarch64: Move cycle estimation into aarch64_vec_op_count adds 2e1886ea064 aarch64: Add vf_factor to aarch64_vec_op_count adds c6c5c5ebaee aarch64: Use new hooks for vector comparisons adds 87fcff96db6 aarch64: Remove redundant costing code
No new revisions were added by this update.
Summary of changes: gcc/config/aarch64/aarch64.c | 1057 ++++++++++---------- gcc/fortran/intrinsic.c | 48 +- gcc/fortran/intrinsic.h | 3 +- gcc/fortran/iresolve.c | 21 +- gcc/fortran/openmp.c | 3 + gcc/fortran/parse.c | 31 +- gcc/fortran/trans-array.c | 61 +- gcc/fortran/trans-array.h | 3 + gcc/fortran/trans-decl.c | 24 +- gcc/fortran/trans-intrinsic.c | 1 + gcc/fortran/trans-openmp.c | 2 + gcc/fortran/trans-stmt.c | 20 + gcc/fortran/trans-types.c | 6 +- gcc/gimplify.c | 14 +- gcc/ipa-modref.c | 19 +- gcc/ipa-pure-const.c | 2 +- gcc/jit/docs/examples/tut04-toyvm/toyvm.c | 2 +- gcc/jit/docs/examples/tut04-toyvm/toyvm.cc | 2 +- gcc/omp-low.c | 13 + .../c-c++-common/goacc/combined-reduction.c | 2 +- .../c-c++-common/goacc/firstprivate-mappings-1.c | 7 +- gcc/testsuite/c-c++-common/goacc/mdc-1.c | 2 +- .../c-c++-common/gomp/target-implicit-map-1.c | 39 + .../g++.dg/goacc/firstprivate-mappings-1.C | 2 +- gcc/testsuite/gcc.dg/vect/tsvc/vect-tsvc-s112.c | 2 +- gcc/testsuite/gcc.target/aarch64/stp_1.c | 29 + gcc/testsuite/gfortran.dg/gomp/clauses-1.f90 | 667 ++++++++++++ gcc/testsuite/gfortran.dg/gomp/nowait-2.f90 | 315 ++++++ gcc/testsuite/gfortran.dg/gomp/nowait-3.f90 | 118 +++ gcc/testsuite/gfortran.dg/gomp/unexpected-end.f90 | 12 +- gcc/testsuite/gfortran.dg/index_5.f90 | 23 + gcc/tree-pretty-print.c | 3 + gcc/tree.h | 5 + include/gomp-constants.h | 14 + libbacktrace/elf.c | 32 +- libbacktrace/xztest.c | 2 +- libgomp/config/gcn/icv-device.c | 14 - libgomp/config/gcn/{icv-device.c => teams.c} | 50 +- libgomp/target.c | 74 +- .../libgomp.c-c++-common/target-implicit-map-1.c | 31 + libstdc++-v3/acinclude.m4 | 2 +- libstdc++-v3/config/abi/pre/gnu.ver | 6 + libstdc++-v3/configure | 2 +- libstdc++-v3/include/bits/c++config | 27 +- libstdc++-v3/src/c++11/debug.cc | 18 +- libstdc++-v3/testsuite/util/testsuite_abi.cc | 3 +- 46 files changed, 2088 insertions(+), 745 deletions(-) create mode 100644 gcc/testsuite/c-c++-common/gomp/target-implicit-map-1.c create mode 100644 gcc/testsuite/gcc.target/aarch64/stp_1.c create mode 100644 gcc/testsuite/gfortran.dg/gomp/clauses-1.f90 create mode 100644 gcc/testsuite/gfortran.dg/gomp/nowait-2.f90 create mode 100644 gcc/testsuite/gfortran.dg/gomp/nowait-3.f90 create mode 100644 gcc/testsuite/gfortran.dg/index_5.f90 copy libgomp/config/gcn/{icv-device.c => teams.c} (63%) create mode 100644 libgomp/testsuite/libgomp.c-c++-common/target-implicit-map-1.c