Bugfix
[libfirm] / ir / be / becopyilp.c
index b3c1206..c2c518c 100644 (file)
@@ -410,8 +410,6 @@ static void M_constr_walker(ir_node *block, void *env) {
                        ir_node *arg = get_irn_n(phi, col);
                        /* Sort out all arguments interfering with its phi */
                        if (nodes_interfere(pi->co->chordal_env, phi, arg)) {
-                               //TODO remove next line
-                               printf("\n\n\n Sorted out an entry. Report this to Daniel.\n\n\n");
                                phi_matrix[row*arity + col] =  NULL;
                        } else
                                phi_matrix[row*arity + col] =  arg;
@@ -618,8 +616,8 @@ static void pi_apply_solution(problem_instance_t *pi) {
        DBG((dbg, LEVEL_2, "Applying solution...\n"));
 
 #ifdef DO_STAT
-       curr_vals[I_ILP_ITER] += lpp_get_iter_cnt(pi->curr_lp);
-       curr_vals[I_ILP_TIME] += lpp_get_sol_time(pi->curr_lp);
+       copystat_add_ilp_time(lpp_get_sol_time(pi->curr_lp));
+       copystat_add_ilp_iter(lpp_get_iter_cnt(pi->curr_lp));
 #endif
 
        sol = xmalloc((pi->last_x_var+1) * sizeof(*sol));