*** tree-ssa-loop.c.orig Thu Jan 20 13:10:46 2005 --- tree-ssa-loop.c Thu Jan 20 13:12:20 2005 *************** tree_complete_unroll (void) *** 340,346 **** static bool gate_tree_complete_unroll (void) { ! return flag_unroll_loops != 0; } struct tree_opt_pass pass_complete_unroll = --- 340,346 ---- static bool gate_tree_complete_unroll (void) { ! return flag_peel_loops || flag_unroll_loops; } struct tree_opt_pass pass_complete_unroll = *** tree-ssa-loop-ivcanon.c.orig Thu Jan 20 13:13:42 2005 --- tree-ssa-loop-ivcanon.c Thu Jan 20 13:14:16 2005 *************** try_unroll_loop_completely (struct loops *** 168,176 **** if (n_unroll) { - if (!flag_unroll_loops) - return false; - old_cond = COND_EXPR_COND (cond); COND_EXPR_COND (cond) = dont_exit; modify_stmt (cond); --- 168,173 ----