From: Richard Henderson Date: Fri, 19 May 2000 19:58:42 +0000 (-0700) Subject: * flow.c (make_edges): The sibling call edge to exit is abnormal. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=228c4d97ec5e44fcb923349fd1a76da0e83821a7;p=gcc.git * flow.c (make_edges): The sibling call edge to exit is abnormal. From-SVN: r34035 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 0ba93a4ef57..c8c6c95a681 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2000-05-19 Richard Henderson + + * flow.c (make_edges): The sibling call edge to exit is abnormal. + 2000-05-19 Richard Henderson * jump.c (redirect_jump): Add delete_unused argument. Don't diff --git a/gcc/flow.c b/gcc/flow.c index e6d4bbbcbfa..b2741307416 100644 --- a/gcc/flow.c +++ b/gcc/flow.c @@ -1024,7 +1024,8 @@ make_edges (label_value_list) wouldn't have created the sibling call in the first place. */ 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 /* If this is a CALL_INSN, then mark it as reaching the active EH