mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-01-13 06:34:26 +08:00
* flow.c (make_edges): The sibling call edge to exit is abnormal.
From-SVN: r34035
This commit is contained in:
parent
8bd636c511
commit
228c4d97ec
@ -1,3 +1,7 @@
|
|||||||
|
2000-05-19 Richard Henderson <rth@cygnus.com>
|
||||||
|
|
||||||
|
* flow.c (make_edges): The sibling call edge to exit is abnormal.
|
||||||
|
|
||||||
2000-05-19 Richard Henderson <rth@cygnus.com>
|
2000-05-19 Richard Henderson <rth@cygnus.com>
|
||||||
|
|
||||||
* jump.c (redirect_jump): Add delete_unused argument. Don't
|
* jump.c (redirect_jump): Add delete_unused argument. Don't
|
||||||
|
@ -1024,7 +1024,8 @@ make_edges (label_value_list)
|
|||||||
wouldn't have created the sibling call in the first place. */
|
wouldn't have created the sibling call in the first place. */
|
||||||
|
|
||||||
if (code == CALL_INSN && SIBLING_CALL_P (insn))
|
if (code == CALL_INSN && SIBLING_CALL_P (insn))
|
||||||
make_edge (edge_cache, bb, EXIT_BLOCK_PTR, 0);
|
make_edge (edge_cache, bb, EXIT_BLOCK_PTR,
|
||||||
|
EDGE_ABNORMAL | EDGE_ABNORMAL_CALL);
|
||||||
else
|
else
|
||||||
|
|
||||||
/* If this is a CALL_INSN, then mark it as reaching the active EH
|
/* If this is a CALL_INSN, then mark it as reaching the active EH
|
||||||
|
Loading…
Reference in New Issue
Block a user