vrp: Remove redundant assure_irg_outs().
authorChristoph Mallon <christoph.mallon@gmx.de>
Tue, 4 Dec 2012 15:51:32 +0000 (16:51 +0100)
committerChristoph Mallon <christoph.mallon@gmx.de>
Wed, 5 Dec 2012 09:03:03 +0000 (10:03 +0100)
The walker does not invalidate the info and the user of the walker already assures it.

ir/ana/vrp.c

index 588f3b4..9bb68f5 100644 (file)
@@ -515,7 +515,6 @@ static void vrp_first_pass(ir_node *n, void *e)
 
        vrp_update_node(env->info, n);
 
-       assure_irg_outs(get_irn_irg(n));
        for (i = get_irn_n_outs(n) - 1; i >=0; --i) {
                ir_node *succ = get_irn_out(n, i);
                if (bitset_is_set(env->visited, get_irn_idx(succ))) {