summaryrefslogtreecommitdiffhomepage
path: root/ir/be/beblocksched.c
diff options
context:
space:
mode:
authorMatthias Braun <matze@braunis.de>2010-07-02 18:58:20 +0200
committerMatthias Braun <matze@braunis.de>2010-07-02 18:58:20 +0200
commit65a52a96e8ab7ed601d7f98c516d37c46b674b4a (patch)
treea292f5f42876918c2ae2a907bb84f62f97c5d541 /ir/be/beblocksched.c
parent7a178059678ff6c6094a7cd8fac5644367417102 (diff)
convert remaining APIs from be_irg_t* to ir_graph*
[r27693]
Diffstat (limited to 'ir/be/beblocksched.c')
-rw-r--r--ir/be/beblocksched.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ir/be/beblocksched.c b/ir/be/beblocksched.c
index 6c8bc8c..d9a9861 100644
--- a/ir/be/beblocksched.c
+++ b/ir/be/beblocksched.c
@@ -517,7 +517,7 @@ static ir_node **create_block_schedule_greedy(ir_graph *irg, ir_exec_freq *execf
start_entry = finish_block_schedule(&env);
block_list = create_blocksched_array(&env, start_entry, env.blockcount,
- be_get_birg_obst(irg));
+ be_get_be_obst(irg));
DEL_ARR_F(env.edges);
obstack_free(&obst, NULL);
@@ -716,7 +716,7 @@ static ir_node **create_block_schedule_ilp(ir_graph *irg, ir_exec_freq *execfreq
start_entry = finish_block_schedule(&env.env);
block_list = create_blocksched_array(&env.env, start_entry,
env.env.blockcount,
- be_get_birg_obst(irg));
+ be_get_be_obst(irg));
DEL_ARR_F(env.ilpedges);
free_lpp(env.lpp);