From 673489bae4253f33b938457f5957e238b8340e1b Mon Sep 17 00:00:00 2001 From: Michael Beck Date: Mon, 7 Mar 2005 13:18:49 +0000 Subject: [PATCH] fixed call to set_trouts_inconsistent() [r5305] --- ir/opt/loop_unrolling.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ir/opt/loop_unrolling.c b/ir/opt/loop_unrolling.c index 8f083e41d..564d44a64 100644 --- a/ir/opt/loop_unrolling.c +++ b/ir/opt/loop_unrolling.c @@ -35,6 +35,7 @@ # include "irgopt_t.h" # include "irnode_t.h" # include "irouts.h" +# include "trouts.h" # include "hashptr.h" # include "pset.h" # include "strength_red.h" @@ -963,7 +964,7 @@ void optimize_loop_unrolling(ir_graph *irg /* unroll factor, max body size */) set_irg_dom_inconsistent(irg); set_irg_outs_inconsistent(irg); set_irg_loopinfo_state(current_ir_graph, loopinfo_cf_inconsistent); - set_trouts_inconsistent(irg); + set_trouts_inconsistent(); set_irg_callee_info_state(irg, irg_callee_info_inconsistent); } -- 2.20.1