From 1896570321ab490f506b885e18c76c41d0f5e4bf Mon Sep 17 00:00:00 2001 From: Zdenek Dvorak Date: Wed, 30 May 2007 15:29:51 +0200 Subject: tree-scalar-evolution.c (scev_const_prop): Do not create labels. * tree-scalar-evolution.c (scev_const_prop): Do not create labels. * tree-ssa-sink.c (statement_sink_location): Return basic block and bsi of the location where statements should be inserted. (sink_code_in_bb): Take bsi from statement_sink_location. * lambda-code.c (lambda_loopnest_to_gcc_loopnest): Use bsi_after_labels instead of bsi_start. * tree-profile.c (tree_gen_ic_func_profiler): Pass BSI_NEW_STMT to bsi_insert_after. * tree-cfg.c (bsi_move_after): Pass BSI_NEW_STMT to bsi_insert_after. (bsi_move_before): Document inconsistency with bsi_move_after. (tree_redirect_edge_and_branch): Do not create labels if not necessary. From-SVN: r125181 --- gcc/tree-profile.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gcc/tree-profile.c') diff --git a/gcc/tree-profile.c b/gcc/tree-profile.c index 54e8847..2dace9c 100644 --- a/gcc/tree-profile.c +++ b/gcc/tree-profile.c @@ -332,7 +332,7 @@ tree_gen_ic_func_profiler (void) tree_uid, cur_func, ic_void_ptr_var); - bsi_insert_after (&bsi, stmt1, BSI_SAME_STMT); + bsi_insert_after (&bsi, stmt1, BSI_NEW_STMT); } } -- cgit v1.1