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 117c50428fd Fortran: ICE with automatic character object, save, and var [...] new 52c37cc67c5 Add support for allocate clause (OpenMP 5.0). new 5aa5d41e162 Fix multiple issue in the testcase allocate-1.f90. new 68115abc858 Add a restriction on allocate clause (OpenMP 5.0) new 822a982d48b Set omp_requires_mask for dynamic_allocators.
The 4 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.omp | 5 + gcc/fortran/ChangeLog.omp | 26 ++ gcc/fortran/dump-parse-tree.c | 1 + gcc/fortran/gfortran.h | 1 + gcc/fortran/openmp.c | 147 ++++++++-- gcc/fortran/parse.c | 3 + gcc/fortran/trans-openmp.c | 87 ++++++ gcc/omp-low.c | 10 + gcc/testsuite/ChangeLog.omp | 17 ++ gcc/testsuite/c-c++-common/gomp/allocate-2.c | 15 + gcc/testsuite/c-c++-common/gomp/allocate-8.c | 18 ++ gcc/testsuite/gfortran.dg/gomp/allocate-1.f90 | 137 ++++++++++ gcc/testsuite/gfortran.dg/gomp/allocate-2.f90 | 45 +++ gcc/testsuite/gfortran.dg/gomp/allocate-3.f90 | 28 ++ gcc/testsuite/gfortran.dg/gomp/clauses-1.f90 | 272 +++++++++---------- gcc/testsuite/gfortran.dg/gomp/collapse1.f90 | 2 +- gcc/testsuite/gfortran.dg/gomp/openmp-simd-4.f90 | 6 +- libgomp/ChangeLog.omp | 35 +++ libgomp/libgomp.texi | 2 +- libgomp/testsuite/libgomp.fortran/allocate-1.c | 7 + libgomp/testsuite/libgomp.fortran/allocate-1.f90 | 332 +++++++++++++++++++++++ 21 files changed, 1038 insertions(+), 158 deletions(-) create mode 100644 gcc/testsuite/c-c++-common/gomp/allocate-8.c create mode 100644 gcc/testsuite/gfortran.dg/gomp/allocate-1.f90 create mode 100644 gcc/testsuite/gfortran.dg/gomp/allocate-2.f90 create mode 100644 gcc/testsuite/gfortran.dg/gomp/allocate-3.f90 create mode 100644 libgomp/testsuite/libgomp.fortran/allocate-1.c create mode 100644 libgomp/testsuite/libgomp.fortran/allocate-1.f90