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 bda072403f8 OpenMP: Generate SIMD clones for functions with "declare target" new 6c6d03e4c69 libgomp.texi: OpenMP Impl Status 5.1 additions + TR11 new 97c07e0b841 libgomp: Add no-target-region rev offload test + fix plugin-nvptx new 519f647c57f OpenMP/Fortran: Permit end-clause on directive new ec544590291 gcn: Fix __builtin_gcn_first_call_this_thread_p
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 | 9 ++ gcc/config/gcn/gcn.cc | 16 +-- gcc/config/gcn/gcn.md | 13 -- gcc/fortran/ChangeLog.omp | 22 +++ gcc/fortran/openmp.cc | 57 ++++---- gcc/fortran/parse.cc | 33 ++++- gcc/testsuite/ChangeLog.omp | 14 ++ gcc/testsuite/gfortran.dg/gomp/copyprivate-1.f90 | 21 +++ gcc/testsuite/gfortran.dg/gomp/copyprivate-2.f90 | 97 +++++++++++++ gcc/testsuite/gfortran.dg/gomp/nowait-2.f90 | 159 --------------------- .../gomp/{nowait-2.f90 => nowait-4.f90} | 157 -------------------- gcc/testsuite/gfortran.dg/gomp/nowait-5.f90 | 156 ++++++++++++++++++++ gcc/testsuite/gfortran.dg/gomp/nowait-6.f90 | 158 ++++++++++++++++++++ .../gomp/{nowait-3.f90 => nowait-7.f90} | 72 +++++----- gcc/testsuite/gfortran.dg/gomp/nowait-8.f90 | 92 ++++++++++++ libgomp/ChangeLog.omp | 25 ++++ libgomp/libgomp.texi | 70 ++++++++- libgomp/plugin/plugin-nvptx.c | 36 +++-- .../libgomp.c-c++-common/reverse-offload-2.c | 49 +++++++ 19 files changed, 836 insertions(+), 420 deletions(-) create mode 100644 gcc/testsuite/gfortran.dg/gomp/copyprivate-1.f90 create mode 100644 gcc/testsuite/gfortran.dg/gomp/copyprivate-2.f90 copy gcc/testsuite/gfortran.dg/gomp/{nowait-2.f90 => nowait-4.f90} (62%) create mode 100644 gcc/testsuite/gfortran.dg/gomp/nowait-5.f90 create mode 100644 gcc/testsuite/gfortran.dg/gomp/nowait-6.f90 copy gcc/testsuite/gfortran.dg/gomp/{nowait-3.f90 => nowait-7.f90} (69%) create mode 100644 gcc/testsuite/gfortran.dg/gomp/nowait-8.f90 create mode 100644 libgomp/testsuite/libgomp.c-c++-common/reverse-offload-2.c