This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from f45d14b495d Fortran: Fix typo in error message. new 99e2906ae25 OpenMP: 'interop' construct - add ME support + target-indep [...]
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/builtin-types.def | 3 + gcc/c/c-parser.cc | 6 +- gcc/cp/parser.cc | 1 + gcc/fortran/trans-openmp.cc | 20 +- gcc/fortran/types.def | 3 + gcc/gimple-low.cc | 1 + gcc/gimple-pretty-print.cc | 23 ++ gcc/gimple.cc | 18 ++ gcc/gimple.def | 4 + gcc/gimple.h | 33 ++- gcc/gimplify.cc | 22 +- gcc/omp-builtins.def | 3 + gcc/omp-low.cc | 233 +++++++++++++++++++++ gcc/testsuite/c-c++-common/gomp/interop-1.c | 2 - gcc/testsuite/c-c++-common/gomp/interop-2.c | 2 - gcc/testsuite/c-c++-common/gomp/interop-3.c | 2 - gcc/testsuite/c-c++-common/gomp/interop-4.c | 12 +- gcc/testsuite/c-c++-common/gomp/interop-5.c | 68 ++++++ gcc/testsuite/g++.dg/gomp/interop-5.C | 12 +- gcc/testsuite/gfortran.dg/gomp/interop-4.f90 | 10 +- gcc/testsuite/gfortran.dg/gomp/interop-5.f90 | 21 ++ include/gomp-constants.h | 13 +- libgomp/icv-device.c | 7 +- libgomp/libgomp-plugin.h | 44 ++++ libgomp/libgomp.h | 17 +- libgomp/libgomp.map | 1 + libgomp/libgomp_g.h | 4 + libgomp/target.c | 213 ++++++++++++++++--- libgomp/testsuite/libgomp.c-c++-common/interop-1.c | 43 ++++ 29 files changed, 775 insertions(+), 66 deletions(-) create mode 100644 gcc/testsuite/c-c++-common/gomp/interop-5.c create mode 100644 gcc/testsuite/gfortran.dg/gomp/interop-5.f90 create mode 100644 libgomp/testsuite/libgomp.c-c++-common/interop-1.c