From: Jeff Law Date: Mon, 19 Oct 1998 13:03:32 +0000 (-0600) Subject: Fix dumb thinko. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=2fb5435af8014f687fab56254cd5779ec7588ed2;p=gcc.git Fix dumb thinko. From-SVN: r23181 --- diff --git a/gcc/loop.c b/gcc/loop.c index 749a2ac4b5d..5db0a9c11ec 100644 --- a/gcc/loop.c +++ b/gcc/loop.c @@ -840,9 +840,9 @@ scan_loop (loop_start, end, unroll_p, bct_p) else if (/* The set is not guaranteed to be executed one the loop starts, or the value before the set is needed before the set occurs... */ - && (maybe_never - || loop_reg_used_before_p (set, p, loop_start, - scan_start, end)) + (maybe_never + || loop_reg_used_before_p (set, p, loop_start, + scan_start, end)) /* And the register is used in basic blocks other than the one where it is set (meaning that something after this point in the loop might