aboutsummaryrefslogtreecommitdiff
path: root/gcc/java/decl.c
diff options
context:
space:
mode:
authorRichard Henderson <rth@redhat.com>2001-03-27 20:18:13 -0800
committerRichard Henderson <rth@gcc.gnu.org>2001-03-27 20:18:13 -0800
commitc1e9f663099abd31015872fe845ef203781b33a3 (patch)
tree2f6e5455f652d0634d9b03984d996e977ffda1cf /gcc/java/decl.c
parent27f66c0bcbe5f793b652c2aab3ff87bcf01e82a6 (diff)
downloadgcc-c1e9f663099abd31015872fe845ef203781b33a3.zip
gcc-c1e9f663099abd31015872fe845ef203781b33a3.tar.gz
gcc-c1e9f663099abd31015872fe845ef203781b33a3.tar.bz2
bb-reorder.c, [...]: Rename asynchronous_exceptions to flag_non_call_exceptions.
* bb-reorder.c, dwarf2out.c, except.c, except.h, flow.c, jump.c, toplev.c: Rename asynchronous_exceptions to flag_non_call_exceptions. * java/decl.c (end_java_method): Rename asynchronous_exceptions to flag_non_call_exceptions. From-SVN: r40902
Diffstat (limited to 'gcc/java/decl.c')
-rw-r--r--gcc/java/decl.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/java/decl.c b/gcc/java/decl.c
index 1a68a04..a5b423b 100644
--- a/gcc/java/decl.c
+++ b/gcc/java/decl.c
@@ -1827,7 +1827,7 @@ void
end_java_method ()
{
tree fndecl = current_function_decl;
- int flag_asynchronous_exceptions = asynchronous_exceptions;
+ int flag_flag_non_call_exceptions = flag_non_call_exceptions;
expand_end_bindings (getdecls (), 1, 0);
/* pop out of function */
@@ -1844,17 +1844,17 @@ end_java_method ()
expand_function_end (input_filename, lineno, 0);
/* FIXME: If the current method contains any exception handlers,
- force asynchronous_exceptions: this is necessary because signal
+ force flag_non_call_exceptions: this is necessary because signal
handlers in libjava may throw exceptions. This is far from being
a perfect solution, but it's better than doing nothing at all.*/
if (catch_clauses)
- asynchronous_exceptions = 1;
+ flag_non_call_exceptions = 1;
/* Run the optimizers and output assembler code for this function. */
rest_of_compilation (fndecl);
current_function_decl = NULL_TREE;
- asynchronous_exceptions = flag_asynchronous_exceptions;
+ flag_non_call_exceptions = flag_flag_non_call_exceptions;
}
/* Mark language-specific parts of T for garbage-collection. */