This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from 49d5fb4feee Allow more precision when querying from fold_const. new 69561fc781a Add support for allocate clause (OpenMP 5.0). new b0e5163960e vect: Add bias parameter for partial vectorization
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/config/rs6000/vsx.md | 4 +- gcc/doc/md.texi | 38 ++- gcc/fortran/dump-parse-tree.c | 1 + gcc/fortran/gfortran.h | 1 + gcc/fortran/openmp.c | 147 ++++++++-- gcc/fortran/trans-openmp.c | 87 ++++++ gcc/internal-fn.c | 69 ++++- gcc/internal-fn.h | 4 + gcc/testsuite/gfortran.dg/gomp/allocate-1.f90 | 137 ++++++++++ gcc/testsuite/gfortran.dg/gomp/allocate-2.f90 | 45 +++ gcc/testsuite/gfortran.dg/gomp/allocate-3.f90 | 14 + gcc/testsuite/gfortran.dg/gomp/clauses-1.f90 | 272 +++++++++--------- gcc/testsuite/gfortran.dg/gomp/collapse1.f90 | 2 +- gcc/testsuite/gfortran.dg/gomp/openmp-simd-4.f90 | 6 +- gcc/tree-vect-loop-manip.c | 15 + gcc/tree-vect-loop.c | 49 +++- gcc/tree-vect-stmts.c | 31 ++- gcc/tree-vectorizer.h | 10 + libgomp/libgomp.texi | 2 +- libgomp/testsuite/libgomp.fortran/allocate-1.c | 7 + libgomp/testsuite/libgomp.fortran/allocate-1.f90 | 333 +++++++++++++++++++++++ 21 files changed, 1081 insertions(+), 193 deletions(-) create mode 100644 gcc/testsuite/gfortran.dg/gomp/allocate-1.f90 create mode 100644 gcc/testsuite/gfortran.dg/gomp/allocate-2.f90 create mode 100644 gcc/testsuite/gfortran.dg/gomp/allocate-3.f90 create mode 100644 libgomp/testsuite/libgomp.fortran/allocate-1.c create mode 100644 libgomp/testsuite/libgomp.fortran/allocate-1.f90