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 c1c7a10911b Fortran: Fix character(len=cst) dummies with bind(C) [PR102885] new 27664a1c0c5 openmp: Don't reject some valid initializers or conditions [...] new 2707731c02d openmp: Allow non-rectangular loops with pointer iterators new 8f72cb9bc88 openmp: Document that non-rect loops are not supported in F [...] new 4684807c25b Fortran: Fix 'select rank' for allocatables/pointers adds e8dd7ce5d27 libstdc++: Fix doxygen generation to work with relative paths adds 2b4adfe47fc Daily bump. adds 5d3a05456dc c++: Fix up push_local_extern_decl_alias error recovery [PR102642] adds 40b209e340b Avoid exception propagation during bootstrap adds b8754a8ff8b Daily bump. adds e74336df42f x86: Document -fcf-protection requires i686 or newer adds cce92cd8d11 Daily bump. adds 97262ad1c2c Daily bump. adds 73833f5d0e0 Daily bump. adds e20ec3be901 Don't use 'G' constraint in integer move patterns adds 4b304e3d639 Revise -mdisable-fpregs option and add new -msoft-mult option adds dd028e763d5 Daily bump. adds 40d76242a2c Daily bump. adds 8f3a62529a6 gcc/configure: Check for powerpc64le*-*-freebsd* adds 2563fba71d0 Daily bump. new f76fc6740a9 Merge remote-tracking branch 'origin/releases/gcc-11' into [...]
The 5 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 | 38 ++++++ gcc/ChangeLog.omp | 9 ++ gcc/DATESTAMP | 2 +- gcc/ada/ChangeLog | 6 + gcc/ada/sem_prag.adb | 74 +++++++++++- gcc/c-family/ChangeLog.omp | 24 ++++ gcc/c-family/c-common.h | 4 +- gcc/c-family/c-omp.c | 41 +++++-- gcc/config/pa/pa-d.c | 2 +- gcc/config/pa/pa.c | 10 +- gcc/config/pa/pa.h | 1 - gcc/config/pa/pa.md | 54 ++++----- gcc/config/pa/pa.opt | 8 +- gcc/configure | 2 +- gcc/configure.ac | 2 +- gcc/cp/ChangeLog | 14 +++ gcc/cp/ChangeLog.omp | 9 ++ gcc/cp/decl.c | 3 +- gcc/cp/name-lookup.c | 4 +- gcc/cp/parser.c | 6 +- gcc/cp/semantics.c | 4 +- gcc/doc/invoke.texi | 3 +- gcc/fortran/ChangeLog | 10 ++ gcc/fortran/ChangeLog.omp | 8 ++ gcc/fortran/trans-stmt.c | 2 +- gcc/omp-expand.c | 166 +++++++++++++++++++------- gcc/testsuite/ChangeLog | 16 +++ gcc/testsuite/ChangeLog.omp | 24 ++++ gcc/testsuite/c-c++-common/gomp/loop-8.c | 10 ++ gcc/testsuite/c-c++-common/gomp/loop-9.c | 38 ++++++ gcc/testsuite/g++.dg/gomp/loop-3.C | 12 +- gcc/testsuite/g++.dg/gomp/loop-7.C | 22 ++++ gcc/testsuite/g++.dg/tls/pr102642.C | 10 ++ gcc/testsuite/gfortran.dg/PR93963.f90 | 5 + libgomp/ChangeLog.omp | 16 +++ libgomp/libgomp.texi | 2 +- libgomp/testsuite/libgomp.c/loop-26.c | 196 +++++++++++++++++++++++++++++++ libgomp/testsuite/libgomp.c/loop-27.c | 180 ++++++++++++++++++++++++++++ libstdc++-v3/ChangeLog | 10 ++ libstdc++-v3/doc/Makefile.am | 20 ++-- libstdc++-v3/doc/Makefile.in | 20 ++-- 41 files changed, 960 insertions(+), 127 deletions(-) create mode 100644 gcc/testsuite/c-c++-common/gomp/loop-8.c create mode 100644 gcc/testsuite/c-c++-common/gomp/loop-9.c create mode 100644 gcc/testsuite/g++.dg/gomp/loop-7.C create mode 100644 gcc/testsuite/g++.dg/tls/pr102642.C create mode 100644 libgomp/testsuite/libgomp.c/loop-26.c create mode 100644 libgomp/testsuite/libgomp.c/loop-27.c