This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch openacc-gcc-9-branch in repository gcc.
from 54fbada7d4d Fortran - fix OpenMP 'target simd' new d13968ca4a6 Fix OpenMP's use_device_ptr with Fortran array descriptors
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/ChangeLog.openacc | 7 + gcc/fortran/ChangeLog.openacc | 14 + gcc/fortran/f95-lang.c | 2 + gcc/fortran/trans-array.c | 3 + gcc/fortran/trans-openmp.c | 19 + gcc/fortran/trans.h | 1 + gcc/hooks.c | 6 + gcc/hooks.h | 1 + gcc/langhooks-def.h | 2 + gcc/langhooks.h | 4 + gcc/omp-general.c | 10 +- gcc/omp-low.c | 144 ++++- gcc/testsuite/ChangeLog.openacc | 6 + gcc/testsuite/gfortran.dg/gomp/use_device_ptr1.f90 | 102 ++++ gcc/testsuite/gfortran.dg/gomp/use_device_ptr2.f90 | 107 ++++ gcc/testsuite/gfortran.dg/gomp/use_device_ptr3.f90 | 108 ++++ libgomp/ChangeLog.openacc | 4 + .../testsuite/libgomp.fortran/use_device_ptr1.f90 | 608 +++++++++++++++++++++ 18 files changed, 1125 insertions(+), 23 deletions(-) create mode 100644 gcc/testsuite/gfortran.dg/gomp/use_device_ptr1.f90 create mode 100644 gcc/testsuite/gfortran.dg/gomp/use_device_ptr2.f90 create mode 100644 gcc/testsuite/gfortran.dg/gomp/use_device_ptr3.f90 create mode 100644 libgomp/testsuite/libgomp.fortran/use_device_ptr1.f90