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
This commit is contained in:
Andrew Haley 1999-04-14 20:36:33 +00:00 committed by Jeff Law
parent a30d557c36
commit a3e924fcb5
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
Wed Apr 14 21:29:18 1999 Andrew Haley <aph@cygnus.com>
* flow.c: (make_edges): Always make edges from a basic block
to its exception handlers, even if the block ends with a jump.
1999-04-14 23:26 -0400 Zack Weinberg <zack@rabi.columbia.edu>
* graph.c (node_data): Return void. Ignore result of

View File

@ -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;