aboutsummaryrefslogtreecommitdiff
path: root/gcc/flow.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/flow.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/flow.c')
-rw-r--r--gcc/flow.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/flow.c b/gcc/flow.c
index 6625a69..bf5043a 100644
--- a/gcc/flow.c
+++ b/gcc/flow.c
@@ -1324,7 +1324,7 @@ make_edges (label_value_list)
Also mark the CALL_INSN as reaching any nonlocal goto handler. */
- else if (code == CALL_INSN || asynchronous_exceptions)
+ else if (code == CALL_INSN || flag_non_call_exceptions)
{
/* Add any appropriate EH edges. We do this unconditionally
since there may be a REG_EH_REGION or REG_EH_RETHROW note
@@ -1333,7 +1333,7 @@ make_edges (label_value_list)
/* If we have asynchronous exceptions, do the same for *all*
exception regions active in the block. */
- if (asynchronous_exceptions
+ if (flag_non_call_exceptions
&& bb->eh_beg != bb->eh_end)
{
if (bb->eh_beg >= 0)