This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from 7291b2edf6f c-family: Fix ICE on attribute with -fgnu-tm [PR94733] new 3dbc772128e coroutines: Fix handling of conditional statements [PR94288] new f51be2fb865 Shortcut identity VEC_PERM expansion [PR94710]
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: gcc/ChangeLog | 4 + gcc/cp/ChangeLog | 17 + gcc/cp/coroutines.cc | 433 ++++++++++++++++++++- gcc/optabs.c | 2 + gcc/testsuite/ChangeLog | 10 + .../coroutines/torture/co-await-18-if-cond.C | 85 ++++ .../coroutines/torture/co-await-19-while-cond.C | 68 ++++ .../coroutines/torture/co-await-20-do-while-cond.C | 68 ++++ .../coroutines/torture/co-await-21-switch-value.C | 63 +++ .../torture/co-await-22-truth-and-of-if.C | 81 ++++ ...urn-value.C => co-ret-16-simple-control-flow.C} | 23 +- 11 files changed, 838 insertions(+), 16 deletions(-) create mode 100644 gcc/testsuite/g++.dg/coroutines/torture/co-await-18-if-cond.C create mode 100644 gcc/testsuite/g++.dg/coroutines/torture/co-await-19-while-cond.C create mode 100644 gcc/testsuite/g++.dg/coroutines/torture/co-await-20-do-while-cond.C create mode 100644 gcc/testsuite/g++.dg/coroutines/torture/co-await-21-switch-value.C create mode 100644 gcc/testsuite/g++.dg/coroutines/torture/co-await-22-truth-and-of-if.C copy gcc/testsuite/g++.dg/coroutines/torture/{co-ret-05-return-value.C => co-ret-1 [...]