This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from e0a7a6752da analyzer: fix issues with phi handling new 6099b9cc8ce [OpenACC] Fix '#pragma atomic update' typo in 'g++.dg/goacc [...] new a61f6afbee3 OpenACC 'nohost' clause
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/c-family/c-pragma.h | 1 + gcc/c/c-parser.c | 10 +- gcc/c/c-typeck.c | 1 + gcc/cp/parser.c | 11 +- gcc/cp/pt.c | 1 + gcc/cp/semantics.c | 1 + gcc/fortran/dump-parse-tree.c | 2 + gcc/fortran/gfortran.h | 2 + gcc/fortran/module.c | 7 + gcc/fortran/openmp.c | 30 ++++- gcc/fortran/trans-decl.c | 8 ++ gcc/fortran/trans-openmp.c | 2 + gcc/gimplify.c | 2 + gcc/omp-general.c | 17 +++ gcc/omp-low.c | 2 + gcc/omp-offload.c | 36 +++++ .../c-c++-common/goacc/classify-routine-nohost.c | 41 ++++++ .../c-c++-common/goacc/classify-routine.c | 10 +- gcc/testsuite/c-c++-common/goacc/routine-2.c | 4 + .../c-c++-common/goacc/routine-nohost-1.c | 50 +++++++ .../c-c++-common/goacc/routine-nohost-2.c | 96 ++++++++++++++ gcc/testsuite/g++.dg/goacc/template.C | 17 ++- .../gfortran.dg/goacc/classify-routine-nohost.f95 | 39 ++++++ .../gfortran.dg/goacc/classify-routine.f95 | 7 + .../goacc/pure-elemental-procedures-2.f90 | 24 ++++ gcc/testsuite/gfortran.dg/goacc/routine-6.f90 | 10 ++ .../gfortran.dg/goacc/routine-intrinsic-2.f | 10 ++ .../gfortran.dg/goacc/routine-module-1.f90 | 14 ++ .../gfortran.dg/goacc/routine-module-2.f90 | 6 + .../gfortran.dg/goacc/routine-module-3.f90 | 43 +++++- .../gfortran.dg/goacc/routine-module-mod-1.f90 | 60 +++++++++ .../goacc/routine-multiple-directives-1.f90 | 64 +++++++++ .../goacc/routine-multiple-directives-2.f90 | 147 +++++++++++++++++++++ gcc/tree-core.h | 5 +- gcc/tree-nested.c | 6 + gcc/tree-pretty-print.c | 3 + gcc/tree.c | 3 + .../libgomp.oacc-c-c++-common/routine-nohost-1.c | 63 +++++++++ .../libgomp.oacc-c-c++-common/routine-nohost-2.c | 39 ++++++ .../libgomp.oacc-c-c++-common/routine-nohost-2_2.c | 18 +++ .../libgomp.oacc-fortran/routine-nohost-1.f90 | 63 +++++++++ 41 files changed, 963 insertions(+), 12 deletions(-) create mode 100644 gcc/testsuite/c-c++-common/goacc/classify-routine-nohost.c create mode 100644 gcc/testsuite/c-c++-common/goacc/routine-nohost-1.c create mode 100644 gcc/testsuite/c-c++-common/goacc/routine-nohost-2.c create mode 100644 gcc/testsuite/gfortran.dg/goacc/classify-routine-nohost.f95 create mode 100644 libgomp/testsuite/libgomp.oacc-c-c++-common/routine-nohost-1.c create mode 100644 libgomp/testsuite/libgomp.oacc-c-c++-common/routine-nohost-2.c create mode 100644 libgomp/testsuite/libgomp.oacc-c-c++-common/routine-nohost-2_2.c create mode 100644 libgomp/testsuite/libgomp.oacc-fortran/routine-nohost-1.f90