diff options
author | Diego Novillo <dnovillo@redhat.com> | 2004-10-18 18:01:10 +0000 |
---|---|---|
committer | Diego Novillo <dnovillo@gcc.gnu.org> | 2004-10-18 14:01:10 -0400 |
commit | 1a1804c27017289c540fd8b193209a8598af858a (patch) | |
tree | 65fa2dda5884adcb69fca3aa5ca69487f2799ab4 /gcc/lambda-code.c | |
parent | bca9e17b5aade3e19ae49ff9c211510674b46a02 (diff) | |
download | gcc-1a1804c27017289c540fd8b193209a8598af858a.zip gcc-1a1804c27017289c540fd8b193209a8598af858a.tar.gz gcc-1a1804c27017289c540fd8b193209a8598af858a.tar.bz2 |
tree-cfg.c (bsi_for_stmt): Rename from stmt_for_bsi.
* tree-cfg.c (bsi_for_stmt): Rename from stmt_for_bsi.
Update all callers.
* tree-ssa.c (replace_immediate_uses): Call bsi_for_stmt.
Don't call fold_stmt more than once, use bsi_replace.
From-SVN: r89234
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 2f75db9..4ad62b4 100644 --- a/gcc/lambda-code.c +++ b/gcc/lambda-code.c @@ -1937,7 +1937,7 @@ lambda_loopnest_to_gcc_loopnest (struct loop *old_loopnest, LBV_COEFFICIENTS (lbv)[i] = 1; lbv = lambda_body_vector_compute_new (transform, lbv); newiv = lbv_to_gcc_expression (lbv, new_ivs, &stmts); - bsi = stmt_for_bsi (stmt); + bsi = bsi_for_stmt (stmt); /* Insert the statements to build that expression. */ bsi_insert_before (&bsi, stmts, BSI_SAME_STMT); |