diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-11-16 00:08:04 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-11-16 00:08:04 +0000 |
commit | 54f658bd3f3d2badccf93cfa19bc4d0ca11be3c7 (patch) | |
tree | b6e45f956da2645fff833e4102ce64a0965586c1 /gcc/lambda-code.c | |
parent | 58f52dd4068f416c2403cb8c63e4a19ac612c945 (diff) | |
download | ppe42-gcc-54f658bd3f3d2badccf93cfa19bc4d0ca11be3c7.tar.gz ppe42-gcc-54f658bd3f3d2badccf93cfa19bc4d0ca11be3c7.zip |
* tree-cfg.c (bsi_commit_edge_inserts): Remove an argument.
(tree_flow_call_edges_add): Update the call to
bsi_commit_edge_inserts.
* lambda-code.c (lambda_loopnest_to_gcc_loopnest): Likewise.
* profile.c (branch_prob): Likewise.
* tree-mudflap.c (mf_decl_cache_locals): Likewise.
* tree-sra.c (scalarize_function): Likewise.
* tree-ssa-loop-im.c (loop_commit_inserts): Likewise.
* tree-ssa-pre.c (fini_pre): Likewise.
* tree-flow.h: Update the prototype for
bsi_commit_edge_inserts.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@90704 138bc75d-0d04-0410-961f-82ee72b054a4
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 08f963e534b..2e1d85107b5 100644 --- a/gcc/lambda-code.c +++ b/gcc/lambda-code.c @@ -1900,7 +1900,7 @@ lambda_loopnest_to_gcc_loopnest (struct loop *old_loopnest, new_ivs, invariants, MAX_EXPR, &stmts); bsi_insert_on_edge (loop_preheader_edge (temp), stmts); - bsi_commit_edge_inserts (NULL); + bsi_commit_edge_inserts (); /* Build the new upper bound and insert its statements in the basic block of the exit condition */ newupperbound = lle_to_gcc_expression (LL_UPPER_BOUND (newloop), |