This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch devel/omp/gcc-10 in repository gcc.
from b39d180f83a [Fortran] OpenMP 5 – permit more sharing clauses for SIMD ( [...] new 1e3e1fb54ac Fortran: Fix character-kind=4 substring resolution (PR95837) new 4120e9973c6 libgomp.fortran/struct-elem-map-1.f90: Add char kind=4 tests new acde0a5f92e OpenMP: Fixes for omp critical + hint new bbbbd2caf3e critical-hint-*.{c,f90}: Move from gcc/testsuite to libgomp [...] new ed0eb7b6070 openmp: Handle clauses with gimple sequences in convert_non [...] new 00ee82759bb Fortran/OpenMP: Fix detecting not perfectly nested loops
The 6 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 | 11 ++ gcc/c-family/ChangeLog.omp | 8 ++ gcc/c-family/c-omp.c | 11 ++ gcc/c/ChangeLog.omp | 9 ++ gcc/c/c-parser.c | 26 ++-- gcc/cp/ChangeLog.omp | 9 ++ gcc/cp/parser.c | 20 ++- gcc/cp/pt.c | 9 ++ gcc/fortran/ChangeLog.omp | 32 +++++ gcc/fortran/openmp.c | 37 +++-- gcc/fortran/parse.c | 3 +- gcc/fortran/resolve.c | 3 - gcc/fortran/trans-openmp.c | 18 ++- gcc/testsuite/ChangeLog.omp | 37 +++++ gcc/testsuite/g++.dg/gomp/critical-3.C | 31 +++- gcc/testsuite/gfortran.dg/char4-subscript.f90 | 30 ++++ gcc/testsuite/gfortran.dg/gomp/collapse1.f90 | 2 +- gcc/testsuite/gfortran.dg/gomp/collapse2.f90 | 32 +++++ gcc/tree-nested.c | 46 ++++-- libgomp/ChangeLog.omp | 36 +++++ libgomp/omp_lib.f90.in | 27 +++- libgomp/omp_lib.h.in | 16 ++- .../libgomp.c-c++-common/critical-hint-1.c | 49 +++++++ .../libgomp.c-c++-common/critical-hint-2.c | 37 +++++ .../testsuite/libgomp.fortran/critical-hint-1.f90 | 96 +++++++++++++ .../testsuite/libgomp.fortran/critical-hint-2.f90 | 66 +++++++++ libgomp/testsuite/libgomp.fortran/pr93553.f90 | 21 +++ .../libgomp.fortran/struct-elem-map-1.f90 | 160 +++++++++++++++------ 28 files changed, 774 insertions(+), 108 deletions(-) create mode 100644 gcc/testsuite/gfortran.dg/char4-subscript.f90 create mode 100644 gcc/testsuite/gfortran.dg/gomp/collapse2.f90 create mode 100644 libgomp/testsuite/libgomp.c-c++-common/critical-hint-1.c create mode 100644 libgomp/testsuite/libgomp.c-c++-common/critical-hint-2.c create mode 100644 libgomp/testsuite/libgomp.fortran/critical-hint-1.f90 create mode 100644 libgomp/testsuite/libgomp.fortran/critical-hint-2.f90 create mode 100644 libgomp/testsuite/libgomp.fortran/pr93553.f90