This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch devel/omp/gcc-12 in repository gcc.
from 74f4e5bfc16 Merge branch 'releases/gcc-12' into devel/omp/gcc-12 new 58e0579ed87 Fortran/OpenMP: align/allocator modifiers to the allocate clause new f9ea81c07e9 libgomp: Handle OpenMP's reverse offloads
The 2 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 | 18 + gcc/fortran/dump-parse-tree.cc | 23 + gcc/fortran/gfortran.h | 3 +- gcc/fortran/match.cc | 4 +- gcc/fortran/openmp.cc | 106 ++-- gcc/fortran/st.cc | 2 +- gcc/fortran/trans-openmp.cc | 8 + libgomp/ChangeLog.omp | 50 ++ libgomp/libgomp.h | 77 ++- libgomp/libgomp.texi | 4 +- libgomp/oacc-host.c | 1 + libgomp/plugin/plugin-nvptx.c | 6 +- libgomp/splay-tree.c | 22 + libgomp/splay-tree.h | 8 + libgomp/target.c | 599 ++++++++++++++++++++- libgomp/testsuite/libgomp.fortran/allocate-2a.f90 | 26 + libgomp/testsuite/libgomp.fortran/allocate-3.f90 | 28 + .../libgomp.fortran/reverse-offload-2.f90 | 72 +++ .../libgomp.fortran/reverse-offload-3.f90 | 68 +++ .../libgomp.fortran/reverse-offload-4.f90 | 129 +++++ .../libgomp.fortran/reverse-offload-5.f90 | 100 ++++ .../libgomp.fortran/reverse-offload-5a.f90 | 98 ++++ 22 files changed, 1372 insertions(+), 80 deletions(-) create mode 100644 libgomp/testsuite/libgomp.fortran/allocate-2a.f90 create mode 100644 libgomp/testsuite/libgomp.fortran/allocate-3.f90 create mode 100644 libgomp/testsuite/libgomp.fortran/reverse-offload-2.f90 create mode 100644 libgomp/testsuite/libgomp.fortran/reverse-offload-3.f90 create mode 100644 libgomp/testsuite/libgomp.fortran/reverse-offload-4.f90 create mode 100644 libgomp/testsuite/libgomp.fortran/reverse-offload-5.f90 create mode 100644 libgomp/testsuite/libgomp.fortran/reverse-offload-5a.f90