aboutsummaryrefslogtreecommitdiff
path: root/gcc/tree-profile.c
diff options
context:
space:
mode:
authorZdenek Dvorak <dvorakz@suse.cz>2007-05-30 15:29:51 +0200
committerZdenek Dvorak <rakdver@gcc.gnu.org>2007-05-30 13:29:51 +0000
commit1896570321ab490f506b885e18c76c41d0f5e4bf (patch)
treec2daa0843ce51836927c876cdf0efada31c93249 /gcc/tree-profile.c
parent0a1c5e5520b74cb2f2450dce1ef9fa468ba3da39 (diff)
downloadgcc-1896570321ab490f506b885e18c76c41d0f5e4bf.zip
gcc-1896570321ab490f506b885e18c76c41d0f5e4bf.tar.gz
gcc-1896570321ab490f506b885e18c76c41d0f5e4bf.tar.bz2
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
Diffstat (limited to 'gcc/tree-profile.c')
-rw-r--r--gcc/tree-profile.c2
1 files changed, 1 insertions, 1 deletions
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);
}
}