This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch devel/omp/gcc-11 in repository gcc.
from 6d5663d1746 Fortran/OpenMP: Fix depend-clause handling for c_ptr new 98961d3a0cc Fortran/OpenMP: Support mapping of DT with allocatable components
The 1 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/class.c | 523 ++++++- gcc/fortran/f95-lang.c | 6 + gcc/fortran/gfortran.h | 8 + gcc/fortran/match.c | 2 + gcc/fortran/module.c | 28 +- gcc/fortran/openmp.c | 7 - gcc/fortran/resolve.c | 11 +- gcc/fortran/trans-array.c | 48 +- gcc/fortran/trans-expr.c | 12 +- gcc/fortran/trans-intrinsic.c | 33 +- gcc/fortran/trans-openmp.c | 1521 +++++++++++++++++++- gcc/fortran/trans-types.c | 50 +- gcc/fortran/trans.h | 8 + gcc/langhooks-def.h | 10 + gcc/langhooks.c | 24 + gcc/langhooks.h | 15 + gcc/omp-expand.c | 18 +- gcc/omp-low.c | 224 ++- gcc/testsuite/gfortran.dg/c_loc_test_22.f90 | 2 +- gcc/testsuite/gfortran.dg/finalize_21.f90 | 2 +- .../gfortran.dg/gomp/map-alloc-comp-1.f90 | 2 +- .../testsuite/libgomp.fortran/allocatable-comp.f90 | 53 + .../testsuite/libgomp.fortran/map-alloc-comp-3.f90 | 121 ++ .../testsuite/libgomp.fortran/map-alloc-comp-4.f90 | 124 ++ .../testsuite/libgomp.fortran/map-alloc-comp-5.f90 | 53 + .../testsuite/libgomp.fortran/map-alloc-comp-6.f90 | 308 ++++ .../testsuite/libgomp.fortran/map-alloc-comp-7.f90 | 672 +++++++++ 27 files changed, 3741 insertions(+), 144 deletions(-) create mode 100644 libgomp/testsuite/libgomp.fortran/allocatable-comp.f90 create mode 100644 libgomp/testsuite/libgomp.fortran/map-alloc-comp-3.f90 create mode 100644 libgomp/testsuite/libgomp.fortran/map-alloc-comp-4.f90 create mode 100644 libgomp/testsuite/libgomp.fortran/map-alloc-comp-5.f90 create mode 100644 libgomp/testsuite/libgomp.fortran/map-alloc-comp-6.f90 create mode 100644 libgomp/testsuite/libgomp.fortran/map-alloc-comp-7.f90