[Bug c++/97720] throw in try in noexcept fn calls terminate without handling the exception

2024-07-24 Thread jason at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=97720 Jason Merrill changed: What|Removed |Added Status|ASSIGNED|RESOLVED Resolution|---

[Bug c++/97720] throw in try in noexcept fn calls terminate without handling the exception

2024-05-07 Thread rguenth at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=97720 Richard Biener changed: What|Removed |Added Target Milestone|14.0|14.2 --- Comment #10 from Richard

[Bug c++/97720] throw in try in noexcept fn calls terminate without handling the exception

2023-06-03 Thread jason at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=97720 Jason Merrill changed: What|Removed |Added Depends on|95741 | Status|NEW

[Bug c++/97720] throw in try in noexcept fn calls terminate without handling the exception

2023-06-03 Thread jason at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=97720 --- Comment #8 from Jason Merrill --- *** Bug 97339 has been marked as a duplicate of this bug. ***

[Bug c++/97720] throw in try in noexcept fn calls terminate without handling the exception

2023-06-03 Thread cvs-commit at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=97720 --- Comment #7 from CVS Commits --- The trunk branch has been updated by Jason Merrill : https://gcc.gnu.org/g:2415024e0f81f8c09bf08f947c790b43de9d0bbc commit r14-1527-g2415024e0f81f8c09bf08f947c790b43de9d0bbc Author: Jason Merrill Date:

[Bug c++/97720] throw in try in noexcept fn calls terminate without handling the exception

2023-05-23 Thread m101010a at gmail dot com via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=97720 --- Comment #6 from m101010a at gmail dot com --- > represent the second case in the action table as an empty exception > specification like C++98 throw() That will deal with this issue and PR88218, but won't solve PR55918 since using throw()

[Bug c++/97720] throw in try in noexcept fn calls terminate without handling the exception

2023-05-22 Thread jason at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=97720 --- Comment #5 from Jason Merrill --- Note that Foo is unneeded, this shows the same behavior: void bad_guy() throw() { try { throw 0; } catch (float) { } // Don't catch int. }

[Bug c++/97720] throw in try in noexcept fn calls terminate without handling the exception

2023-05-22 Thread jason at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=97720 Jason Merrill changed: What|Removed |Added Ever confirmed|0 |1 Last reconfirmed|