From cbede319b83e35f9cd8cb9b8772ac26cfd09cd8b Mon Sep 17 00:00:00 2001 From: Matthias Braun Date: Fri, 31 Jul 2009 10:35:46 +0000 Subject: [PATCH] fix last commit [r26299] --- ir/opt/opt_ldst.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ir/opt/opt_ldst.c b/ir/opt/opt_ldst.c index 859fd1e56..a20597bad 100644 --- a/ir/opt/opt_ldst.c +++ b/ir/opt/opt_ldst.c @@ -2120,7 +2120,7 @@ static int insert_Load(block_t *bl) { if (!rbitset_equal(bl->avail_out, env.curr_set, env.rbs_size)) { /* the avail set has changed */ - rbitset_cpy(bl->avail_out, env.curr_set, env.rbs_size); + rbitset_copy(bl->avail_out, env.curr_set, env.rbs_size); dump_curr(bl, "Avail_out*"); return 1; } @@ -2367,6 +2367,7 @@ int opt_ldst(ir_graph *irg) { } // dump_block_list(&env); + (void) dump_block_list; calcAvail(); calcAntic(); -- 2.20.1