diff options
author | Andrew Haley <aph@cygnus.com> | 1999-04-14 20:36:33 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1999-04-14 14:36:33 -0600 |
commit | a3e924fcb59eb9d3f506904576d92c7b90df6c32 (patch) | |
tree | bb85737fa346b230dc9a4229799b992d439b69d5 /gcc/flow.c | |
parent | a30d557c369edf926b0d1fa48e419dfdda86d523 (diff) | |
download | gcc-a3e924fcb59eb9d3f506904576d92c7b90df6c32.zip gcc-a3e924fcb59eb9d3f506904576d92c7b90df6c32.tar.gz gcc-a3e924fcb59eb9d3f506904576d92c7b90df6c32.tar.bz2 |
flow.c: (make_edges): Always make edges from a basic block to its exception handlers...
* flow.c: (make_edges): Always make edges from a basic block
to its exception handlers, even if the block ends with a jump.
From-SVN: r26464
Diffstat (limited to 'gcc/flow.c')
-rw-r--r-- | gcc/flow.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -981,7 +981,7 @@ make_edges (label_value_list, bb_eh_end) Also mark the CALL_INSN as reaching any nonlocal goto handler. */ - else if (code == CALL_INSN || asynchronous_exceptions) + if (code == CALL_INSN || asynchronous_exceptions) { int is_call = (code == CALL_INSN ? EDGE_ABNORMAL_CALL : 0); handler_info *ptr; |