From a4f20288d8d42fff6bb3487aa8f56e5b9b892656 Mon Sep 17 00:00:00 2001 From: Jan Hubicka Date: Sat, 1 Jul 2017 14:29:55 +0200 Subject: [PATCH] bb-reorder.c (fix_up_crossing_landing_pad, [...]): Use make_single_succ_edge to keep profile consistent. * bb-reorder.c (fix_up_crossing_landing_pad, fix_crossing_conditional_branches): Use make_single_succ_edge to keep profile consistent. From-SVN: r249868 --- gcc/ChangeLog | 6 ++++++ gcc/bb-reorder.c | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index c51c18ec59f..4ad7c009498 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2017-07-01 Jan Hubicka + + * bb-reorder.c (fix_up_crossing_landing_pad, + fix_crossing_conditional_branches): Use make_single_succ_edge + to keep profile consistent. + 2017-07-01 Jan Hubicka * tree-vect-loop.c (optimize_mask_stores): Use make_single_succ_edge diff --git a/gcc/bb-reorder.c b/gcc/bb-reorder.c index cfb724269b1..f8ef913c539 100644 --- a/gcc/bb-reorder.c +++ b/gcc/bb-reorder.c @@ -1450,7 +1450,7 @@ fix_up_crossing_landing_pad (eh_landing_pad old_lp, basic_block old_bb) emit_barrier_after_bb (new_bb); - make_edge (new_bb, post_bb, 0); + make_single_succ_edge (new_bb, post_bb, 0); /* Make sure new bb is in the other partition. */ new_partition = BB_PARTITION (old_bb); @@ -2118,7 +2118,7 @@ fix_crossing_conditional_branches (void) for 'dest'. */ if (EDGE_COUNT (new_bb->succs) == 0) - new_edge = make_edge (new_bb, dest, 0); + new_edge = make_single_succ_edge (new_bb, dest, 0); else new_edge = EDGE_SUCC (new_bb, 0); -- 2.30.2