From 76e5562064bbd6b914cff1cd26306e6a6b885961 Mon Sep 17 00:00:00 2001 From: Christoph Mallon Date: Tue, 4 Dec 2012 16:51:32 +0100 Subject: [PATCH] vrp: Remove redundant assure_irg_outs(). The walker does not invalidate the info and the user of the walker already assures it. --- ir/ana/vrp.c | 1 - 1 file changed, 1 deletion(-) diff --git a/ir/ana/vrp.c b/ir/ana/vrp.c index 588f3b4ce..9bb68f5b0 100644 --- a/ir/ana/vrp.c +++ b/ir/ana/vrp.c @@ -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))) { -- 2.20.1