changed irg_walk_blkwise_graph to irg_block_walk_graph
authorDaniel Grund <grund@cs.uni-saarland.de>
Tue, 20 Dec 2005 14:54:02 +0000 (14:54 +0000)
committerDaniel Grund <grund@cs.uni-saarland.de>
Tue, 20 Dec 2005 14:54:02 +0000 (14:54 +0000)
ir/be/belower.c

index 001e8c9..b11244c 100644 (file)
@@ -309,5 +309,5 @@ void lower_perms(be_chordal_env_t *chord_env, int do_copy) {
        env.chord_env = chord_env;
        env.do_copy   = do_copy;
 
-       irg_walk_blkwise_graph(chord_env->irg,  NULL, lower_perms_walker, &env);
+       irg_block_walk_graph(chord_env->irg,  NULL, lower_perms_walker, &env);
 }