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 d6b6e2be68c Fix ICE in cp_omp_mappable_type_1 new 3c260613f2e Support Fortran 2003 class pointers in OpenACC new cfc73bde082 Assumed-size arrays with non-lexical data mappings new 1d39156f663 Allow the accelerator to have more offloaded functions than [...]
The 3 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 | 18 + gcc/c/ChangeLog.openacc | 5 + gcc/c/c-typeck.c | 6 +- gcc/cp/ChangeLog.openacc | 5 + gcc/cp/semantics.c | 20 +- gcc/fortran/ChangeLog.openacc | 20 + gcc/fortran/openmp.c | 6 - gcc/fortran/trans-expr.c | 184 +++++----- gcc/fortran/trans-openmp.c | 404 +++++++++++++++------ gcc/fortran/trans.h | 9 + gcc/gimplify.c | 81 ++++- gcc/omp-low.c | 5 + gcc/testsuite/ChangeLog.openacc | 4 + gcc/testsuite/c-c++-common/goacc/mdc-1.c | 16 +- gcc/tree-pretty-print.c | 9 + include/ChangeLog.openacc | 4 + include/gomp-constants.h | 6 +- libgomp/ChangeLog.openacc | 16 + libgomp/oacc-parallel.c | 3 +- libgomp/target.c | 2 +- .../libgomp.oacc-fortran/class-ptr-param.f95 | 34 ++ .../libgomp.oacc-fortran/classtypes-1.f95 | 48 +++ .../libgomp.oacc-fortran/classtypes-2.f95 | 106 ++++++ .../libgomp.oacc-fortran/derivedtype-1.f95 | 30 ++ .../libgomp.oacc-fortran/derivedtype-2.f95 | 41 +++ .../libgomp.oacc-fortran/multidim-slice.f95 | 50 +++ 26 files changed, 887 insertions(+), 245 deletions(-) create mode 100644 libgomp/testsuite/libgomp.oacc-fortran/class-ptr-param.f95 create mode 100644 libgomp/testsuite/libgomp.oacc-fortran/classtypes-1.f95 create mode 100644 libgomp/testsuite/libgomp.oacc-fortran/classtypes-2.f95 create mode 100644 libgomp/testsuite/libgomp.oacc-fortran/derivedtype-1.f95 create mode 100644 libgomp/testsuite/libgomp.oacc-fortran/derivedtype-2.f95 create mode 100644 libgomp/testsuite/libgomp.oacc-fortran/multidim-slice.f95