This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug c++/60685] exception not caught by enclosing catch


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=60685

Jonathan Wakely <redi at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |jason at gcc dot gnu.org

--- Comment #2 from Jonathan Wakely <redi at gcc dot gnu.org> ---
When an exception is thrown in an NSDMI we unwind the stack in
_Unwind_RaiseException but reach:

101           if (code == _URC_END_OF_STACK)
102             /* Hit end of stack with no handler found.  */
103             return _URC_END_OF_STACK;


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]