From 546c6ccec47aeef28e1fa49c3c4e20fd14c5619e Mon Sep 17 00:00:00 2001 From: hubicka Date: Sat, 1 Jul 2017 12:29:55 +0000 Subject: [PATCH] * bb-reorder.c (fix_up_crossing_landing_pad, fix_crossing_conditional_branches): Use make_single_succ_edge to keep profile consistent. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@249868 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/ChangeLog | 6 ++++++ gcc/bb-reorder.c | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index c51c18ec59f0..4ad7c0094981 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 cfb724269b19..f8ef913c5395 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.47.2