This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch openacc-gcc-8-branch in repository gcc.
from 671ade1f9a7 Regenerate top-level Makefile.in for commit 998eb38b265d new baa8f979f01 Disable libstdc++ dependency for libffi new 457032350d3 Add OpenACC 2.6 `acc_get_property' support new f999b10a79d Add OpenACC 2.6 `serial' construct support new 601757da971 Add OpenACC 2.6 `no_create' clause support
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: ChangeLog.openacc | 6 + Makefile.def | 5 +- Makefile.in | 1 - gcc/ChangeLog.openacc | 46 + gcc/c-family/ChangeLog.openacc | 12 + gcc/c-family/c-pragma.c | 1 + gcc/c-family/c-pragma.h | 2 + gcc/c/ChangeLog.openacc | 20 + gcc/c/c-parser.c | 61 +- gcc/c/c-typeck.c | 1 + gcc/cp/ChangeLog.openacc | 24 + gcc/cp/constexpr.c | 1 + gcc/cp/parser.c | 62 +- gcc/cp/pt.c | 1 + gcc/cp/semantics.c | 1 + gcc/doc/generic.texi | 5 + gcc/fortran/ChangeLog.openacc | 56 + gcc/fortran/dump-parse-tree.c | 6 + gcc/fortran/gfortran.h | 14 +- gcc/fortran/match.c | 3 +- gcc/fortran/match.h | 2 + gcc/fortran/openmp.c | 65 +- gcc/fortran/parse.c | 27 +- gcc/fortran/resolve.c | 6 + gcc/fortran/st.c | 2 + gcc/fortran/trans-openmp.c | 17 +- gcc/fortran/trans.c | 2 + gcc/gimple-pretty-print.c | 3 + gcc/gimple.h | 3 + gcc/gimplify.c | 35 +- gcc/omp-expand.c | 37 +- gcc/omp-low.c | 58 +- gcc/testsuite/ChangeLog.openacc | 4 + gcc/testsuite/c-c++-common/goacc/serial-dims.c | 12 + gcc/tree-pretty-print.c | 7 + gcc/tree.def | 6 + include/ChangeLog.openacc | 13 + include/gomp-constants.h | 16 + libffi/ChangeLog.openacc | 9 + libffi/Makefile.in | 5 - libffi/configure | 4145 +------------------- libffi/configure.ac | 5 +- libffi/include/Makefile.in | 5 - libffi/man/Makefile.in | 5 - libffi/testsuite/Makefile.in | 5 - libgomp/ChangeLog.openacc | 60 + libgomp/libgomp-plugin.h | 8 + libgomp/libgomp.h | 1 + libgomp/libgomp.map | 4 + libgomp/libgomp.texi | 39 + libgomp/oacc-host.c | 22 + libgomp/oacc-init.c | 99 +- libgomp/openacc.f90 | 116 +- libgomp/openacc.h | 15 + libgomp/plugin/plugin-hsa.c | 26 + libgomp/plugin/plugin-nvptx.c | 91 + libgomp/target.c | 54 + .../libgomp.oacc-c-c++-common/acc-get-property.c | 37 + .../libgomp.oacc-c-c++-common/nocreate-1.c | 40 + .../libgomp.oacc-c-c++-common/nocreate-2.c | 28 + .../libgomp.oacc-c-c++-common/nocreate-3.c | 38 + .../libgomp.oacc-c-c++-common/nocreate-4.c | 42 + .../libgomp.oacc-c-c++-common/serial-dims.c | 98 + .../libgomp.oacc-fortran/acc-get-property.f | 33 + .../testsuite/libgomp.oacc-fortran/nocreate-1.f90 | 29 + .../testsuite/libgomp.oacc-fortran/nocreate-2.f90 | 61 + 66 files changed, 1696 insertions(+), 4067 deletions(-) create mode 100644 gcc/testsuite/c-c++-common/goacc/serial-dims.c create mode 100644 libgomp/testsuite/libgomp.oacc-c-c++-common/acc-get-property.c create mode 100644 libgomp/testsuite/libgomp.oacc-c-c++-common/nocreate-1.c create mode 100644 libgomp/testsuite/libgomp.oacc-c-c++-common/nocreate-2.c create mode 100644 libgomp/testsuite/libgomp.oacc-c-c++-common/nocreate-3.c create mode 100644 libgomp/testsuite/libgomp.oacc-c-c++-common/nocreate-4.c create mode 100644 libgomp/testsuite/libgomp.oacc-c-c++-common/serial-dims.c create mode 100644 libgomp/testsuite/libgomp.oacc-fortran/acc-get-property.f create mode 100644 libgomp/testsuite/libgomp.oacc-fortran/nocreate-1.f90 create mode 100644 libgomp/testsuite/libgomp.oacc-fortran/nocreate-2.f90