X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fbe%2Fbelower.c;h=83b60f6b9e209cf285f73b8dce06b165d8c02ee2;hb=5474a1c188c9d59eea2c915515980cd9cbab58d8;hp=65563824a73c97f7b9bdbbd0aa24eb55b88f26df;hpb=9476fdab2f947229d122616732a938ec25e259ac;p=libfirm diff --git a/ir/be/belower.c b/ir/be/belower.c index 65563824a..83b60f6b9 100644 --- a/ir/be/belower.c +++ b/ir/be/belower.c @@ -23,7 +23,6 @@ * register constraints. * @author Christian Wuerdig * @date 14.12.2005 - * @version $Id$ */ #include "config.h" @@ -833,10 +832,9 @@ void assure_constraints(ir_graph *irg) ir_nodehashmap_destroy(&cenv.op_set); obstack_free(&cenv.obst, NULL); - be_liveness_invalidate(be_get_irg_liveness(irg)); + be_invalidate_live_sets(irg); } - /** * Push nodes that do not need to be permed through the Perm. * This is commonly a reload cascade at block ends. @@ -1015,7 +1013,7 @@ void lower_nodes_after_ra(ir_graph *irg, int do_copy) env.do_copy = do_copy; /* we will need interference */ - be_liveness_assure_chk(be_get_irg_liveness(irg)); + be_assure_live_chk(irg); irg_walk_graph(irg, NULL, lower_nodes_after_ra_walker, &env); }