diff options
author | Paolo Bonzini <bonzini@gnu.org> | 2006-02-02 13:05:36 +0000 |
---|---|---|
committer | Paolo Bonzini <bonzini@gcc.gnu.org> | 2006-02-02 13:05:36 +0000 |
commit | 35771d345fbe800cb3769316ffe874909bccdc4b (patch) | |
tree | e16c886c00e7c4c7bd7f6e4ba89378213ccc7f6a /gcc/lambda-code.c | |
parent | 8843c120f1f0a562b0250c59ec66317feae2fb0c (diff) | |
download | gcc-35771d345fbe800cb3769316ffe874909bccdc4b.zip gcc-35771d345fbe800cb3769316ffe874909bccdc4b.tar.gz gcc-35771d345fbe800cb3769316ffe874909bccdc4b.tar.bz2 |
tree-flow-inline.h (bsi_after_labels): Rewrite, return what its name says.
2006-02-02 Paolo Bonzini <bonzini@gnu.org>
* tree-flow-inline.h (bsi_after_labels): Rewrite, return
what its name says.
* lambda-code.c (perfect_nestify): Use bsi_insert_before on
bsi_after_labels iterator.
* tree-if-conv.c (find_phi_replacement_condition,
replace_phi_with_cond_modify_expr): Likewise.
* tree-scalar-evolution.c (scev_const_prop): Likewise.
* tree-ssa-loop-ivopts.c (compute_phi_arg_on_exit): Likewise.
From-SVN: r110514
Diffstat (limited to 'gcc/lambda-code.c')
-rw-r--r-- | gcc/lambda-code.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/lambda-code.c b/gcc/lambda-code.c index c19ea6c..ee1d169 100644 --- a/gcc/lambda-code.c +++ b/gcc/lambda-code.c @@ -2556,7 +2556,7 @@ perfect_nestify (struct loops *loops, newname = make_ssa_name (newname, newstmt); TREE_OPERAND (newstmt, 0) = newname; SET_USE (use_p, TREE_OPERAND (newstmt, 0)); - bsi_insert_after (&tobsi, newstmt, BSI_SAME_STMT); + bsi_insert_before (&tobsi, newstmt, BSI_SAME_STMT); update_stmt (newstmt); update_stmt (imm_stmt); } |