+Thu Dec 4 11:51:00 1997 Jason Merrill <jason@yorick.cygnus.com>
+
+ * except.c (expand_end_all_catch): Fix for sjlj exceptions.
+
Thu Dec 4 12:30:40 1997 J"orn Rennecke <amylaar@cygnus.co.uk>
* sh.c (final_prescan_insn): Use local label prefix
void
expand_end_all_catch ()
{
- rtx new_catch_clause, outer_context;
+ rtx new_catch_clause, outer_context = NULL_RTX;
if (! doing_eh (1))
return;
- outer_context = ehstack.top->entry->outer_context;
if (! exceptions_via_longjmp)
- /* Finish the rethrow region. size_zero_node is just a NOP. */
- expand_eh_region_end (size_zero_node);
-
+ {
+ outer_context = ehstack.top->entry->outer_context;
+
+ /* Finish the rethrow region. size_zero_node is just a NOP. */
+ expand_eh_region_end (size_zero_node);
+ }
+
/* Code to throw out to outer context, if we fall off end of catch
handlers. This is rethrow (Lresume, same id, same obj) in the
documentation. We use Lresume because we know that it will throw