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 1556e447c0f libstdc++: Implement LWG 3595 changes to common_iterator adds 1af78e731fe Fortran: Fixes and additional tests for shape/ubound/size [ [...] new 2e4659199e8 openmp: Fortran strictly-structured blocks support new d438dd2523a testsuite/102861 - adjust gcc.dg/vect/bb-slp-16.c change
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/fortran/decl.c | 1 + gcc/fortran/expr.c | 3 +- gcc/fortran/parse.c | 69 +++++- gcc/fortran/parse.h | 2 +- gcc/fortran/trans-array.c | 20 +- gcc/fortran/trans-intrinsic.c | 246 +++++++-------------- gcc/fortran/trans-openmp.c | 6 +- gcc/testsuite/gcc.dg/vect/bb-slp-16.c | 73 +++--- .../gfortran.dg/c-interop/shape-bindc.f90 | 77 +++++++ gcc/testsuite/gfortran.dg/c-interop/shape-poly.f90 | 89 ++++++++ gcc/testsuite/gfortran.dg/c-interop/size-bindc.f90 | 106 +++++++++ gcc/testsuite/gfortran.dg/c-interop/size-poly.f90 | 118 ++++++++++ .../gfortran.dg/c-interop/ubound-bindc.f90 | 129 +++++++++++ .../gfortran.dg/c-interop/ubound-poly.f90 | 145 ++++++++++++ gcc/testsuite/gfortran.dg/gomp/cancel-1.f90 | 3 + gcc/testsuite/gfortran.dg/gomp/nesting-3.f90 | 20 +- .../gomp/strictly-structured-block-1.f90 | 214 ++++++++++++++++++ .../gomp/strictly-structured-block-2.f90 | 139 ++++++++++++ .../gomp/strictly-structured-block-3.f90 | 52 +++++ libgomp/libgomp.texi | 2 +- .../libgomp.fortran/task-reduction-16.f90 | 1 + 21 files changed, 1271 insertions(+), 244 deletions(-) create mode 100644 gcc/testsuite/gfortran.dg/c-interop/shape-bindc.f90 create mode 100644 gcc/testsuite/gfortran.dg/c-interop/shape-poly.f90 create mode 100644 gcc/testsuite/gfortran.dg/c-interop/size-bindc.f90 create mode 100644 gcc/testsuite/gfortran.dg/c-interop/size-poly.f90 create mode 100644 gcc/testsuite/gfortran.dg/c-interop/ubound-bindc.f90 create mode 100644 gcc/testsuite/gfortran.dg/c-interop/ubound-poly.f90 create mode 100644 gcc/testsuite/gfortran.dg/gomp/strictly-structured-block-1.f90 create mode 100644 gcc/testsuite/gfortran.dg/gomp/strictly-structured-block-2.f90 create mode 100644 gcc/testsuite/gfortran.dg/gomp/strictly-structured-block-3.f90