aboutsummaryrefslogtreecommitdiff
path: root/gcc/jump.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/jump.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/jump.c')
-rw-r--r--gcc/jump.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/jump.c b/gcc/jump.c
index bc80ba2..958f858 100644
--- a/gcc/jump.c
+++ b/gcc/jump.c
@@ -1447,7 +1447,7 @@ find_cross_jump (e1, e2, minimum, f1, f2)
/* Avoid moving insns across EH regions if either of the insns
can throw. */
if (flag_exceptions
- && (asynchronous_exceptions || GET_CODE (i1) == CALL_INSN)
+ && (flag_non_call_exceptions || GET_CODE (i1) == CALL_INSN)
&& !in_same_eh_region (i1, i2))
break;