aboutsummaryrefslogtreecommitdiff
path: root/gcc/java/java-except.h
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/java/java-except.h')
-rw-r--r--gcc/java/java-except.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/gcc/java/java-except.h b/gcc/java/java-except.h
index 49ef54b..e069053 100644
--- a/gcc/java/java-except.h
+++ b/gcc/java/java-except.h
@@ -47,6 +47,9 @@ struct eh_range
/* The next child of outer, in address order. */
struct eh_range *next_sibling;
+
+ /* True if this range has already been expanded. */
+ int expanded;
};
/* A dummy range that represents the entire method. */
@@ -60,9 +63,9 @@ extern void method_init_exceptions PARAMS ((void));
extern void emit_handlers PARAMS ((void));
-extern void maybe_start_try PARAMS ((int));
+extern void maybe_start_try PARAMS ((int, int));
-extern void maybe_end_try PARAMS ((int));
+extern void maybe_end_try PARAMS ((int, int));
extern void add_handler PARAMS ((int, int, tree, tree));