This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from 2ec3c6f [AARCH64][PATCH 2/3] Implementing vmulx_lane NEON intrinsic variants new 01d728a gcc/fortran/ * dump-parse-tree.c (show_namespace): Handle d [...]
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/fortran/ChangeLog | 45 ++++ gcc/fortran/dump-parse-tree.c | 12 +- gcc/fortran/gfortran.h | 37 ++- gcc/fortran/module.c | 34 ++- gcc/fortran/openmp.c | 276 ++++++++++++++++++--- gcc/fortran/parse.c | 23 +- gcc/fortran/parse.h | 2 +- gcc/fortran/resolve.c | 1 + gcc/fortran/st.c | 5 + gcc/fortran/symbol.c | 97 ++++++++ gcc/fortran/trans-decl.c | 150 ++++++++++- gcc/fortran/trans-openmp.c | 25 +- gcc/fortran/trans-stmt.c | 7 +- gcc/fortran/trans-stmt.h | 2 +- gcc/fortran/trans.c | 1 + gcc/testsuite/ChangeLog | 6 + gcc/testsuite/gfortran.dg/goacc/declare-1.f95 | 5 +- gcc/testsuite/gfortran.dg/goacc/declare-2.f95 | 71 ++++++ libgomp/ChangeLog | 9 + .../testsuite/libgomp.oacc-fortran/declare-1.f90 | 248 ++++++++++++++++++ .../testsuite/libgomp.oacc-fortran/declare-2.f90 | 16 ++ .../testsuite/libgomp.oacc-fortran/declare-3.f90 | 68 +++++ .../testsuite/libgomp.oacc-fortran/declare-4.f90 | 29 +++ .../testsuite/libgomp.oacc-fortran/declare-5.f90 | 29 +++ 24 files changed, 1114 insertions(+), 84 deletions(-) create mode 100644 gcc/testsuite/gfortran.dg/goacc/declare-2.f95 create mode 100644 libgomp/testsuite/libgomp.oacc-fortran/declare-1.f90 create mode 100644 libgomp/testsuite/libgomp.oacc-fortran/declare-2.f90 create mode 100644 libgomp/testsuite/libgomp.oacc-fortran/declare-3.f90 create mode 100644 libgomp/testsuite/libgomp.oacc-fortran/declare-4.f90 create mode 100644 libgomp/testsuite/libgomp.oacc-fortran/declare-5.f90