public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/94752] New: [coroutines] compiler ICE with coroutine with unnamed parameter
@ 2020-04-24 22:33 lewissbaker.opensource at gmail dot com
  2020-04-25  8:47 ` [Bug c++/94752] " iains at gcc dot gnu.org
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: lewissbaker.opensource at gmail dot com @ 2020-04-24 22:33 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=94752

            Bug ID: 94752
           Summary: [coroutines] compiler ICE with coroutine with unnamed
                    parameter
           Product: gcc
           Version: 10.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: lewissbaker.opensource at gmail dot com
  Target Milestone: ---

See https://godbolt.org/z/QCXqeo

Compile the following source code with GCC trunk.
Flags: -std=c++20 -fcoroutines

-----
#include <coroutine>
using namespace std;

struct task {
    struct promise_type {
        promise_type() {}
        task get_return_object() { return {}; }
        suspend_never initial_suspend() { return {}; }
        suspend_never final_suspend() { return {}; }
        void return_void() {}
        void unhandled_exception() {}
    };
};

task foo(int) {
    co_return;
}
-----

Results in an internal-compile-error - segmentation-fault.
Pointing at closing curly-brace of 'foo()'.

Seems to be related to the parameter being unnamed as naming
the parameter results in this code compiling successfully.

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2020-04-27 10:01 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-04-24 22:33 [Bug c++/94752] New: [coroutines] compiler ICE with coroutine with unnamed parameter lewissbaker.opensource at gmail dot com
2020-04-25  8:47 ` [Bug c++/94752] " iains at gcc dot gnu.org
2020-04-25  9:12 ` iains at gcc dot gnu.org
2020-04-26 19:32 ` cvs-commit at gcc dot gnu.org
2020-04-27 10:01 ` iains at gcc dot gnu.org

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).