diff options
author | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-03-28 04:18:13 +0000 |
---|---|---|
committer | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-03-28 04:18:13 +0000 |
commit | b01010c778a00440334ce38918a72940036cb534 (patch) | |
tree | 2f6e5455f652d0634d9b03984d996e977ffda1cf /gcc/except.c | |
parent | b130ede94bcece335b2dae0de6a93aee6c51a5fa (diff) | |
download | gcc-b01010c778a00440334ce38918a72940036cb534.tar.gz |
* 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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@40902 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/except.c')
-rw-r--r-- | gcc/except.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/except.c b/gcc/except.c index eb80b9b40e2..c432eaa801d 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. */ |