[Bug c++/82930] [C++17] ICE: in is_normal_capture_proxy, at cp/lambda.c:288 with structured binding in a lambda function with auto typed arguments

2018-02-07 Thread hotguest1 at hotmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=82930 sandthorn changed: What|Removed |Added CC||hotguest1 at hotmail dot com --- Comment #3

[Bug c++/87322] New: [GCC 8.1+] GCC fails to parse captured lambda of 2nd inner lambda if the captured lambda has "," (having 2 arguments)

2018-09-15 Thread hotguest1 at hotmail dot com
Version: unknown Status: UNCONFIRMED Severity: normal Priority: P3 Component: c++ Assignee: unassigned at gcc dot gnu.org Reporter: hotguest1 at hotmail dot com Target Milestone: --- Compiler thinks ',' in inner_func2 =

[Bug c++/84930] New: Brace-closed initialization of cstring (i.e."abcdefghi") to coresponding aggregate types fails in certain situation

2018-03-18 Thread hotguest1 at hotmail dot com
Version: unknown Status: UNCONFIRMED Severity: normal Priority: P3 Component: c++ Assignee: unassigned at gcc dot gnu.org Reporter: hotguest1 at hotmail dot com Target Milestone: --- We can do this in both GCC and clang std

[Bug c++/97640] New: GCC doesn't optimize-out outside-affecting lambdas within y-combinator while clang does.

2020-10-30 Thread hotguest1 at hotmail dot com via Gcc-bugs
IRMED Severity: normal Priority: P3 Component: c++ Assignee: unassigned at gcc dot gnu.org Reporter: hotguest1 at hotmail dot com Target Milestone: --- Suppose we have a y-combinator, so that we can write lambdas in recursive fashion. template s

[Bug c++/97640] GCC doesn't optimize-out outside-affecting lambdas within y-combinator while clang does.

2020-10-30 Thread hotguest1 at hotmail dot com via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=97640 --- Comment #1 from sandthorn --- The y-combinator implementation is from Barry's and Mathemagician's answer on SO. https://stackoverflow.com/a/40873657/6370128