Keep flag added
[libfirm] / ir / be / bespillbelady.c
index 6881725..04cf887 100644 (file)
@@ -567,7 +567,6 @@ void be_spill_belady(const be_chordal_env_t *chordal_env) {
        belady_env_t bel;
 
        dbg = firm_dbg_register("ir.be.spillbelady");
-       firm_dbg_set_mask(dbg, DEBUG_LVL);
 
        /* init belady env */
        obstack_init(&bel.ob);
@@ -580,6 +579,8 @@ void be_spill_belady(const be_chordal_env_t *chordal_env) {
        bel.reloads = pset_new_ptr_default();
        bel.copies  = pset_new_ptr_default();
 
+       DBG((dbg, LEVEL_1, "running on register class: %s\n", bel.cls->name));
+
        /* do the work */
        irg_block_walk_graph(chordal_env->irg, compute_block_start_info, NULL, &bel);
        irg_block_walk_graph(chordal_env->irg, belady, NULL, &bel);