This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from 6303cd7e415 c++, coroutines: Separate the analysis, ramp and outlined f [...] new 624fb5b4407 c++, coroutines: Separate allocator work from the ramp body build. new efc99ab2d5f c++, coroutines: Fix handling of early exceptions [PR113773]. new a0b431033c3 c++, coroutines: Only allow void get_return_object if the r [...] new f4915e6c4cd c++, coroutines: Allow convertible get_return_on_allocation [...] new 68ee624bc52 c++, coroutines: Fix ordering of return object conversions [...] new f0315f7a325 c++, coroutines: Rework handling of throwing_cleanups [PR102051]. new c442a9b78bd c++, coroutines: Look through initial_await target exprs [P [...]
The 7 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/cp/call.cc | 34 +- gcc/cp/coroutines.cc | 718 ++++++++++----------- gcc/cp/coroutines.h | 2 +- gcc/cp/cp-tree.h | 3 + .../coroutines/coro-bad-alloc-01-bad-op-del.C | 2 +- .../coro-bad-gro-00-class-gro-scalar-return.C | 4 +- .../coro-bad-gro-01-void-gro-non-class-coro.C | 4 +- .../g++.dg/coroutines/coro-bad-grooaf-00-static.C | 6 +- gcc/testsuite/g++.dg/coroutines/pr102051.C | 16 + gcc/testsuite/g++.dg/coroutines/pr102489.C | 2 +- gcc/testsuite/g++.dg/coroutines/pr103868.C | 2 +- gcc/testsuite/g++.dg/coroutines/pr109682.C | 28 + gcc/testsuite/g++.dg/coroutines/pr110635.C | 72 +++ gcc/testsuite/g++.dg/coroutines/pr115908.C | 75 +++ gcc/testsuite/g++.dg/coroutines/pr94879-folly-1.C | 3 +- gcc/testsuite/g++.dg/coroutines/pr94883-folly-2.C | 39 +- gcc/testsuite/g++.dg/coroutines/pr96749-2.C | 2 +- gcc/testsuite/g++.dg/coroutines/ramp-return-b.C | 8 +- gcc/testsuite/g++.dg/coroutines/torture/pr113773.C | 66 ++ 19 files changed, 670 insertions(+), 416 deletions(-) create mode 100644 gcc/testsuite/g++.dg/coroutines/pr102051.C create mode 100644 gcc/testsuite/g++.dg/coroutines/pr109682.C create mode 100644 gcc/testsuite/g++.dg/coroutines/pr110635.C create mode 100644 gcc/testsuite/g++.dg/coroutines/pr115908.C create mode 100644 gcc/testsuite/g++.dg/coroutines/torture/pr113773.C