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 c8d71464699 Fortran: Fix -Wno-missing-include-dirs handling [PR55534] new eeb7829bb18 openmp: Add support for allocator and align modifiers on al [...] new 147d6b7dda4 openmp: Fix OpenMP expansion of scope with non-fallthrugh b [...] adds d4b84aefe69 Daily bump. adds d891ef6ac49 Fix no_fsanitize_address effective target adds 7fbab3afca9 Fortran - (large) arrays in the main shall be static adds 5210f05c6eb rs6000: Don't use r12 for CR save on ELFv2 (PR102107) adds da0a5628d47 rs6000: Fix ELFv2 r12 use in epilogue adds ae362db3e5c Daily bump. adds cc11a171eee ipa-fnsummary: Remove inconsistent bp_pack_value new 80247a54bf5 Merge remote-tracking branch 'origin/releases/gcc-11' into [...]
The 3 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 | 18 +++ gcc/ChangeLog.omp | 26 ++++ gcc/DATESTAMP | 2 +- gcc/c-family/ChangeLog.omp | 7 + gcc/c-family/c-omp.c | 2 + gcc/c/ChangeLog.omp | 8 + gcc/c/c-parser.c | 161 +++++++++++++++++++-- gcc/config/rs6000/rs6000-logue.c | 15 +- gcc/cp/ChangeLog.omp | 12 ++ gcc/cp/parser.c | 71 ++++++++- gcc/cp/pt.c | 10 ++ gcc/cp/semantics.c | 40 ++++- gcc/fortran/ChangeLog | 15 ++ gcc/fortran/trans-decl.c | 5 +- gcc/ipa-fnsummary.c | 15 +- gcc/omp-expand.c | 10 +- gcc/omp-low.c | 40 +++-- gcc/testsuite/ChangeLog | 21 +++ gcc/testsuite/ChangeLog.omp | 17 +++ gcc/testsuite/c-c++-common/gomp/allocate-6.c | 84 +++++++++++ gcc/testsuite/c-c++-common/gomp/allocate-7.c | 41 ++++++ gcc/testsuite/c-c++-common/gomp/scope-3.c | 21 +++ gcc/testsuite/g++.dg/abi/anon4.C | 1 + gcc/testsuite/g++.dg/gomp/allocate-4.C | 108 ++++++++++++++ gcc/testsuite/gcc.dg/pr91441.c | 4 +- gcc/testsuite/gcc.dg/pr96260.c | 2 +- gcc/testsuite/gcc.dg/pr96307.c | 2 +- gcc/testsuite/gfortran.dg/pr102366.f90 | 9 ++ gcc/testsuite/gnat.dg/asan1.adb | 2 +- gcc/testsuite/lib/target-supports.exp | 5 +- gcc/tree-pretty-print.c | 15 +- gcc/tree.c | 2 +- gcc/tree.h | 3 + libgomp/ChangeLog.omp | 8 + .../testsuite/libgomp.c-c++-common/allocate-2.c | 37 +++++ .../{allocate-1.c => allocate-3.c} | 70 ++++++--- 36 files changed, 836 insertions(+), 73 deletions(-) create mode 100644 gcc/testsuite/c-c++-common/gomp/allocate-6.c create mode 100644 gcc/testsuite/c-c++-common/gomp/allocate-7.c create mode 100644 gcc/testsuite/c-c++-common/gomp/scope-3.c create mode 100644 gcc/testsuite/g++.dg/gomp/allocate-4.C create mode 100644 gcc/testsuite/gfortran.dg/pr102366.f90 create mode 100644 libgomp/testsuite/libgomp.c-c++-common/allocate-2.c copy libgomp/testsuite/libgomp.c-c++-common/{allocate-1.c => allocate-3.c} (76%)