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 4d83e2f9d03 Merge branch 'releases/gcc-11' into devel/omp/gcc-11 new 4fb903d43b1 OpenMP/Fortran: Handle polymorphic scalars in data-sharing [...]
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/ChangeLog.omp | 12 + gcc/fortran/trans-expr.c | 2 +- gcc/fortran/trans-openmp.c | 162 +++++++++- gcc/testsuite/ChangeLog.omp | 11 + .../gfortran.dg/gomp/class-firstprivate-1.f90 | 62 ++++ .../gfortran.dg/gomp/class-firstprivate-2.f90 | 54 ++++ .../gfortran.dg/gomp/class-firstprivate-3.f90 | 61 ++++ .../gfortran.dg/gomp/class-firstprivate-4.f90 | 44 +++ libgomp/ChangeLog.omp | 10 + .../libgomp.fortran/class-firstprivate-1.f90 | 323 ++++++++++++++++++++ .../libgomp.fortran/class-firstprivate-2.f90 | 334 +++++++++++++++++++++ .../libgomp.fortran/class-firstprivate-3.f90 | 334 +++++++++++++++++++++ 12 files changed, 1407 insertions(+), 2 deletions(-) create mode 100644 gcc/testsuite/gfortran.dg/gomp/class-firstprivate-1.f90 create mode 100644 gcc/testsuite/gfortran.dg/gomp/class-firstprivate-2.f90 create mode 100644 gcc/testsuite/gfortran.dg/gomp/class-firstprivate-3.f90 create mode 100644 gcc/testsuite/gfortran.dg/gomp/class-firstprivate-4.f90 create mode 100644 libgomp/testsuite/libgomp.fortran/class-firstprivate-1.f90 create mode 100644 libgomp/testsuite/libgomp.fortran/class-firstprivate-2.f90 create mode 100644 libgomp/testsuite/libgomp.fortran/class-firstprivate-3.f90