X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fbe%2Fbechordal_main.c;h=1dcf11da0900df79cf85adf277db07ba3efdfeee;hb=7ac90687a76ac7f73c98dca2881b641f2f77ed55;hp=b423b2cc3e08f8c6791e6e3ed0ad04bcbd37e0bc;hpb=588054c00e0e6eadf61f7cc8998cbcc6bbae297c;p=libfirm diff --git a/ir/be/bechordal_main.c b/ir/be/bechordal_main.c index b423b2cc3..1dcf11da0 100644 --- a/ir/be/bechordal_main.c +++ b/ir/be/bechordal_main.c @@ -240,11 +240,11 @@ static void dump(unsigned mask, ir_graph *irg, if(cls) { char buf[256]; snprintf(buf, sizeof(buf), "-%s%s", cls->name, suffix); - dump_func(irg, buf); + be_dump(irg, buf, dump_func); } else - dump_func(irg, suffix); + be_dump(irg, suffix, dump_func); } } @@ -292,9 +292,6 @@ static void be_ra_chordal_main(const be_irg_t *bi) be_liveness(irg); be_check_pressure(&chordal_env); - be_liveness(irg); - be_check_pressure(&chordal_env); - /* Color the graph. */ be_ra_chordal_color(&chordal_env); dump(BE_CH_DUMP_CONSTR, irg, chordal_env.cls, "-color", dump_ir_block_graph_sched); @@ -304,7 +301,6 @@ static void be_ra_chordal_main(const be_irg_t *bi) be_ifg_check(chordal_env.ifg); /* copy minimization */ - copystat_collect_cls(&chordal_env); #ifdef COPYOPT_STAT co_compare_solvers(&chordal_env); #else