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 29a07ec594b [nvptx] Handle memmodel for atomic ops new 6db84ecbd5f gcc/ChangeLog: Move entry to gcc/ChangeLog.omp adds a16952ddf95 IBM Z: Avoid bash-specific substitution in configure adds c28df7197b4 arm: Fix ICEs with compare-and-swap and -march=armv8-m.base [...] adds 2b571861001 libstdc++: Fix wrong thread waking on notify [PR100334] adds f8d2cef5c54 libstdc++: Fix filesystem::path constraints for volatile [P [...] adds 7d91dd2efb3 openmp: Notify team barrier of pending tasks in omp_fulfill_event adds 0d9e2516272 Daily bump. adds efb6bda7f51 OpenMP/Fortran: Reject nonintrinsic assignments in OMP WORK [...] new 23d1d325422 Merge branch 'releases/gcc-11' into devel/omp/gcc-11
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: contrib/ChangeLog | 9 +++ gcc/ChangeLog | 32 +++++--- gcc/ChangeLog.omp | 13 +++ gcc/DATESTAMP | 2 +- gcc/config/arm/arm.c | 26 +++++- gcc/config/arm/sync.md | 28 +++---- gcc/config/arm/thumb1.md | 15 ++++ gcc/configure | 3 +- gcc/configure.ac | 3 +- gcc/fortran/ChangeLog | 8 ++ gcc/fortran/resolve.c | 6 ++ gcc/testsuite/ChangeLog | 15 ++++ gcc/testsuite/gcc.target/arm/pr99977.c | 6 ++ gcc/testsuite/gfortran.dg/gomp/workshare-59.f90 | 26 ++++++ libgomp/ChangeLog | 9 +++ libstdc++-v3/ChangeLog | 28 +++++++ libstdc++-v3/include/bits/atomic_wait.h | 28 +++++-- libstdc++-v3/include/experimental/bits/fs_path.h | 2 +- .../27_io/filesystem/path/construct/100630.cc | 14 ++++ .../29_atomics/atomic/wait_notify/100334.cc | 93 ++++++++++++++++++++++ .../filesystem/path/construct/100630.cc | 14 ++++ 21 files changed, 340 insertions(+), 40 deletions(-) create mode 100644 gcc/testsuite/gcc.target/arm/pr99977.c create mode 100644 gcc/testsuite/gfortran.dg/gomp/workshare-59.f90 create mode 100644 libstdc++-v3/testsuite/27_io/filesystem/path/construct/100630.cc create mode 100644 libstdc++-v3/testsuite/29_atomics/atomic/wait_notify/100334.cc create mode 100644 libstdc++-v3/testsuite/experimental/filesystem/path/construct/1 [...]