aboutsummaryrefslogtreecommitdiff
path: root/gcc/java/except.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/java/except.c')
-rw-r--r--gcc/java/except.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/gcc/java/except.c b/gcc/java/except.c
index 4628823..7c393be 100644
--- a/gcc/java/except.c
+++ b/gcc/java/except.c
@@ -293,3 +293,12 @@ emit_handlers ()
emit_label (funcend);
}
}
+
+/* Resume executing at the statement immediately after the end of an
+ exception region. */
+
+void
+expand_resume_after_catch ()
+{
+ expand_goto (top_label_entry (&caught_return_label_stack));
+}