[Bug c++/79627] Ice with type of VLA in lambda

2020-07-23 Thread mpolacek at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=79627 Marek Polacek changed: What|Removed |Added Status|NEW |RESOLVED CC|

[Bug c++/79627] Ice with type of VLA in lambda

2020-05-21 Thread egallager at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=79627 Eric Gallager changed: What|Removed |Added CC||egallager at gcc dot gnu.org

[Bug c++/79627] Ice with type of VLA in lambda

2020-05-11 Thread marxin at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=79627 --- Comment #4 from Martin Liška --- (In reply to Arseny Solokha from comment #3) > It is fixed for gcc 10, probably by > g:00a49cd840f60774b0e9e0109fb10559bc9a9194. Yes, it's fixed with this commit.

[Bug c++/79627] Ice with type of VLA in lambda

2020-05-08 Thread asolokha at gmx dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=79627 Arseny Solokha changed: What|Removed |Added CC||asolokha at gmx dot com --- Comment #3

[Bug c++/79627] Ice with type of VLA in lambda

2018-04-04 Thread reichelt at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=79627 Volker Reichelt changed: What|Removed |Added Status|UNCONFIRMED |NEW Last reconfirmed|

[Bug c++/79627] Ice with type of VLA in lambda

2017-02-21 Thread pinskia at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=79627 --- Comment #2 from Andrew Pinski --- *** Bug 79656 has been marked as a duplicate of this bug. ***

[Bug c++/79627] Ice with type of VLA in lambda

2017-02-20 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=79627 --- Comment #1 from Jakub Jelinek --- This is nasty, all we have is a SAVE_EXPR that is evaluated both outside of the lambda and inside of it, so ideally we'd capture a temporary assigned that SAVE_EXPR and use it inside of the lambda. But no