[Bug c++/79249] Lambda call does not create exception handler.

2021-08-13 Thread pinskia at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=79249 Andrew Pinski changed: What|Removed |Added Target Milestone|--- |8.0

[Bug c++/79249] Lambda call does not create exception handler.

2021-08-09 Thread pinskia at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=79249 Andrew Pinski changed: What|Removed |Added Resolution|--- |FIXED Depends on|

[Bug c++/79249] Lambda call does not create exception handler.

2017-01-26 Thread redi at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=79249 --- Comment #3 from Jonathan Wakely --- Slightly further reduced: template auto attempt(FnT f) { return [f]() { try { f(); } catch(...) { __builtin_puts("caught"); } }; } // More complex behavior doe

[Bug c++/79249] Lambda call does not create exception handler.

2017-01-26 Thread redi at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=79249 --- Comment #2 from Jonathan Wakely --- Reduced: template auto attempt(FnT f) { return [f]() { try { f(); } catch(...) { __builtin_puts("caught"); } }; } // More complex behavior does not seem to mat

[Bug c++/79249] Lambda call does not create exception handler.

2017-01-26 Thread redi at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=79249 Jonathan Wakely changed: What|Removed |Added Keywords||wrong-code Status|UNCONFIR