From: Jeff Law Date: Mon, 19 Oct 1998 13:03:32 +0000 (-0600) Subject: Fix dumb thinko. X-Git-Tag: prereleases/libgcj-0.1~2429 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2fb5435af8014f687fab56254cd5779ec7588ed2;p=thirdparty%2Fgcc.git Fix dumb thinko. From-SVN: r23181 --- diff --git a/gcc/loop.c b/gcc/loop.c index 749a2ac4b5d9..5db0a9c11ece 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