diff options
author | rakdver <rakdver@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-05-30 13:29:51 +0000 |
---|---|---|
committer | rakdver <rakdver@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-05-30 13:29:51 +0000 |
commit | 4122c2d468cf0f8912ac09c67c4aec14347bfda1 (patch) | |
tree | c2daa0843ce51836927c876cdf0efada31c93249 /gcc/tree-profile.c | |
parent | e44348b5a67cb32a21fd5dd2250eee8ed4f997c5 (diff) | |
download | gcc-4122c2d468cf0f8912ac09c67c4aec14347bfda1.tar.gz |
* 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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@125181 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree-profile.c')
-rw-r--r-- | gcc/tree-profile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree-profile.c b/gcc/tree-profile.c index 54e88479cdf..2dace9c6a8f 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); } } |