public inbox for gcc-cvs@sourceware.org
help / color / mirror / Atom feed
* [gcc r11-10641] c++: co_await and initializer_list [PR103871]
@ 2023-04-22  0:22 Jason Merrill
  0 siblings, 0 replies; only message in thread
From: Jason Merrill @ 2023-04-22  0:22 UTC (permalink / raw)
  To: gcc-cvs

https://gcc.gnu.org/g:998e77e55126269b3e67b2f05f0f27a421839673

commit r11-10641-g998e77e55126269b3e67b2f05f0f27a421839673
Author: Jason Merrill <jason@redhat.com>
Date:   Wed Mar 15 16:33:37 2023 -0400

    c++: co_await and initializer_list [PR103871]
    
    When flatten_await_stmt processes the backing array for an initializer_list,
    we call cp_build_modify_expr to initialize the promoted variable from the
    TARGET_EXPR; that needs to be accepted.
    
            PR c++/103871
            PR c++/98056
    
    gcc/cp/ChangeLog:
    
            * typeck.c (cp_build_modify_expr): Allow array initialization of
            DECL_ARTIFICIAL variable.
    
    gcc/testsuite/ChangeLog:
    
            * g++.dg/coroutines/co-await-initlist1.C: New test.

Diff:
---
 gcc/cp/typeck.c                                     |  2 ++
 .../g++.dg/coroutines/co-await-initlist1.C          | 21 +++++++++++++++++++++
 2 files changed, 23 insertions(+)

diff --git a/gcc/cp/typeck.c b/gcc/cp/typeck.c
index e61d67727f0..c2b703e3cf0 100644
--- a/gcc/cp/typeck.c
+++ b/gcc/cp/typeck.c
@@ -8891,6 +8891,8 @@ cp_build_modify_expr (location_t loc, tree lhs, enum tree_code modifycode,
 	}
 
       /* Allow array assignment in compiler-generated code.  */
+      else if (DECL_P (lhs) && DECL_ARTIFICIAL (lhs))
+	/* OK, used by coroutines (co-await-initlist1.C).  */;
       else if (!current_function_decl
 	       || !DECL_DEFAULTED_FN (current_function_decl))
 	{
diff --git a/gcc/testsuite/g++.dg/coroutines/co-await-initlist1.C b/gcc/testsuite/g++.dg/coroutines/co-await-initlist1.C
new file mode 100644
index 00000000000..b8e8923a9c8
--- /dev/null
+++ b/gcc/testsuite/g++.dg/coroutines/co-await-initlist1.C
@@ -0,0 +1,21 @@
+// PR c++/103871
+// { dg-do compile { target c++20 } }
+
+#include <coroutine>
+#include <initializer_list>
+
+struct my_coro {
+  struct promise_type {
+    my_coro get_return_object();
+    std::suspend_never initial_suspend();
+    std::suspend_never final_suspend() noexcept;
+    void unhandled_exception();
+  };
+};
+
+std::suspend_never inner(std::initializer_list<int>);
+
+my_coro doesnt_work()
+{
+  co_await inner({ 1,2,3 });
+}

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2023-04-22  0:22 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-04-22  0:22 [gcc r11-10641] c++: co_await and initializer_list [PR103871] Jason Merrill

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).