diff options
Diffstat (limited to 'gcc/tree-if-conv.c')
-rw-r--r-- | gcc/tree-if-conv.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/tree-if-conv.c b/gcc/tree-if-conv.c index f87d64d..2356f91 100644 --- a/gcc/tree-if-conv.c +++ b/gcc/tree-if-conv.c @@ -287,7 +287,7 @@ tree_if_convert_cond_expr (struct loop *loop, tree stmt, tree cond, using new condition. */ if (!bb_with_exit_edge_p (loop, bb_for_stmt (stmt))) { - bsi_remove (bsi); + bsi_remove (bsi, true); cond = NULL_TREE; } return; @@ -934,7 +934,7 @@ combine_blocks (struct loop *loop) for (bsi = bsi_start (bb); !bsi_end_p (bsi); ) { if (TREE_CODE (bsi_stmt (bsi)) == LABEL_EXPR) - bsi_remove (&bsi); + bsi_remove (&bsi, true); else { set_bb_for_stmt (bsi_stmt (bsi), merge_target_bb); |