This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch releases/gcc-10 in repository gcc.
from 412124203ec coroutines: co_returns are statements, not expressions. new f43a1b1d171 coroutines: Correct frame capture of compiler temps [PR95591+4]. new 2ced237ad12 openacc: Remove unnecessary detach finalization new d9a77a17333 openacc: Deep copy attach/detach should not affect referenc [...] new bee0b7156a0 gcc-changelog: fix combining of arguments.
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: contrib/git-backport.py | 2 +- gcc/cp/coroutines.cc | 1138 ++++++++++++-------- gcc/testsuite/g++.dg/coroutines/pr95591.C | 26 + gcc/testsuite/g++.dg/coroutines/pr95599.C | 69 ++ gcc/testsuite/g++.dg/coroutines/pr95823.C | 30 + gcc/testsuite/g++.dg/coroutines/pr95824.C | 37 + libgomp/libgomp.h | 4 +- libgomp/oacc-mem.c | 40 +- libgomp/target.c | 22 +- .../libgomp.oacc-c-c++-common/mdc-refcount-1.c | 60 ++ .../libgomp.oacc-c-c++-common/mdc-refcount-2.c | 123 +++ .../libgomp.oacc-c-c++-common/mdc-refcount-3.c | 86 ++ .../structured-detach-underflow.c | 28 + .../deep-copy-6-no_finalize.F90 | 9 +- .../testsuite/libgomp.oacc-fortran/deep-copy-6.f90 | 8 +- 15 files changed, 1176 insertions(+), 506 deletions(-) create mode 100644 gcc/testsuite/g++.dg/coroutines/pr95591.C create mode 100644 gcc/testsuite/g++.dg/coroutines/pr95599.C create mode 100644 gcc/testsuite/g++.dg/coroutines/pr95823.C create mode 100644 gcc/testsuite/g++.dg/coroutines/pr95824.C create mode 100644 libgomp/testsuite/libgomp.oacc-c-c++-common/mdc-refcount-1.c create mode 100644 libgomp/testsuite/libgomp.oacc-c-c++-common/mdc-refcount-2.c create mode 100644 libgomp/testsuite/libgomp.oacc-c-c++-common/mdc-refcount-3.c create mode 100644 libgomp/testsuite/libgomp.oacc-c-c++-common/structured-detach-u [...]