aboutsummaryrefslogtreecommitdiff
path: root/gcc/except.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/except.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/except.c')
-rw-r--r--gcc/except.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/except.c b/gcc/except.c
index eb80b9b..c432eaa 100644
--- a/gcc/except.c
+++ b/gcc/except.c
@@ -416,7 +416,7 @@ int exceptions_via_longjmp = 2;
/* One to enable asynchronous exception support. */
-int asynchronous_exceptions = 0;
+int flag_non_call_exceptions = 0;
/* One to protect cleanup actions with a handler that calls
__terminate, zero otherwise. */
@@ -2704,7 +2704,7 @@ can_throw (insn)
return 1;
}
- if (asynchronous_exceptions)
+ if (flag_non_call_exceptions)
{
/* If we wanted asynchronous exceptions, then everything but NOTEs
and CODE_LABELs could throw. */