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 f76fc6740a9 Merge remote-tracking branch 'origin/releases/gcc-11' into [...] new 2b4bd2bdc04 openmp: Diagnose threadprivate OpenMP loop iterators new 798ebb8cd58 openmp: Add testcase for threadprivate random access class [...] adds 97cebda80d3 sra: Fix corner case of total scalarization with virtual in [...] adds 70c3fa50574 Fix warnings building linux-atomic.c and fptr.c on hppa64-linux adds 5782bacacad Fortran: do not restrict PDT KIND and LEN type parameters t [...] adds 3e2ccaab1fb Daily bump. adds 4719d058452 Update documentation of %X spec adds 818961c1765 Daily bump. adds ee13a30bffa Daily bump. adds cfc3c7544ce Daily bump. adds d0d8bd6378f Daily bump. adds 0111975c072 libstdc++: Fix range access for empty std::valarray [PR103022] adds fdc2700d095 Daily bump. new 98e6a28f9a8 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 | 14 +++ gcc/ChangeLog.omp | 7 ++ gcc/DATESTAMP | 2 +- gcc/doc/invoke.texi | 3 +- gcc/fortran/ChangeLog | 9 ++ gcc/fortran/decl.c | 16 ---- gcc/gimplify.c | 18 ++++ gcc/testsuite/ChangeLog | 16 ++++ gcc/testsuite/ChangeLog.omp | 14 +++ gcc/testsuite/c-c++-common/gomp/loop-10.c | 35 +++++++ gcc/testsuite/g++.dg/gomp/{loop-6.C => loop-8.C} | 69 +++++++++++++- gcc/testsuite/g++.dg/torture/pr102505.C | 15 +++ gcc/testsuite/gfortran.dg/pdt_4.f03 | 4 +- gcc/tree-sra.c | 2 + libgcc/ChangeLog | 11 +++ libgcc/config.host | 2 +- libgcc/config/pa/linux-atomic.c | 106 +++++++++++---------- libgcc/config/pa/t-linux64 | 8 +- libstdc++-v3/ChangeLog | 13 +++ libstdc++-v3/include/std/valarray | 30 ++++-- .../testsuite/26_numerics/valarray/103022.cc | 15 +++ .../testsuite/26_numerics/valarray/range_access.cc | 49 ++++++++-- .../26_numerics/valarray/range_access2.cc | 22 ++++- 23 files changed, 384 insertions(+), 96 deletions(-) create mode 100644 gcc/testsuite/c-c++-common/gomp/loop-10.c copy gcc/testsuite/g++.dg/gomp/{loop-6.C => loop-8.C} (60%) create mode 100644 gcc/testsuite/g++.dg/torture/pr102505.C create mode 100644 libstdc++-v3/testsuite/26_numerics/valarray/103022.cc