This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch devel/omp/gcc-11 in repository gcc.
from 1eb2dc0062e Fortran: Fix same_type_as new f160648fb48 openmp: Add alloc_align attribute to omp_aligned_*alloc and [...] new 1972da66540 openmp: Avoid PLT relocations for omp_* symbols in libgomp new 4d49018b5e8 openmp: Differentiate between order(concurrent) and order(r [...] new 42a09d9e814 Add/update libgomp.fortran/alloc-*.f90
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: gcc/ChangeLog.omp | 12 + gcc/c-family/ChangeLog.omp | 8 + gcc/c-family/c-omp.c | 4 + gcc/c/ChangeLog.omp | 8 + gcc/c/c-parser.c | 6 +- gcc/cp/ChangeLog.omp | 8 + gcc/cp/parser.c | 6 +- gcc/fortran/ChangeLog.omp | 13 + gcc/fortran/dump-parse-tree.c | 2 + gcc/fortran/gfortran.h | 4 +- gcc/fortran/openmp.c | 5 +- gcc/fortran/trans-openmp.c | 7 + gcc/omp-general.c | 16 ++ gcc/testsuite/ChangeLog.omp | 7 + gcc/testsuite/gfortran.dg/gomp/order-5.f90 | 8 +- gcc/tree-pretty-print.c | 2 + gcc/tree.h | 3 + libgomp/ChangeLog.omp | 41 +++ libgomp/affinity-fmt.c | 3 + libgomp/env.c | 2 +- libgomp/fortran.c | 1 + libgomp/icv-device.c | 17 +- libgomp/icv.c | 2 + libgomp/omp.h.in | 4 +- libgomp/testsuite/libgomp.c-c++-common/alloc-9.c | 271 +++++++++++++++++++ .../libgomp.c-c++-common/order-reproducible-1.c | 63 +++++ .../libgomp.c-c++-common/order-reproducible-2.c | 28 ++ libgomp/testsuite/libgomp.fortran/alloc-10.f90 | 4 +- libgomp/testsuite/libgomp.fortran/alloc-11.f90 | 301 +++++++++++++++++++++ libgomp/testsuite/libgomp.fortran/alloc-7.f90 | 14 +- libgomp/testsuite/libgomp.fortran/alloc-8.f90 | 2 +- 31 files changed, 843 insertions(+), 29 deletions(-) create mode 100644 libgomp/testsuite/libgomp.c-c++-common/alloc-9.c create mode 100644 libgomp/testsuite/libgomp.c-c++-common/order-reproducible-1.c create mode 100644 libgomp/testsuite/libgomp.c-c++-common/order-reproducible-2.c create mode 100644 libgomp/testsuite/libgomp.fortran/alloc-11.f90