Bugfix: fixed uninitialized variable.
authorMichael Beck <beck@ipd.info.uni-karlsruhe.de>
Fri, 21 May 2010 19:58:33 +0000 (19:58 +0000)
committerMichael Beck <beck@ipd.info.uni-karlsruhe.de>
Fri, 21 May 2010 19:58:33 +0000 (19:58 +0000)
[r27572]

ir/opt/loop.c

index 2a156fa..fbc964e 100644 (file)
@@ -924,7 +924,7 @@ static unsigned find_condition_chain(ir_node *block)
        unsigned mark = 0;
        unsigned has_be = 0;
        unsigned jmp_only;
-       unsigned nodes_n;
+       unsigned nodes_n = 0;
 
        mark_irn_visited(block);