From: Richard Kenner Date: Wed, 21 Jul 2004 02:04:00 +0000 (-0400) Subject: Add parens so emacs will properly indent. X-Git-Tag: releases/gcc-4.0.0~6433 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7ea7e0584d529d634065871f1ed7c4b25581ea17;p=thirdparty%2Fgcc.git Add parens so emacs will properly indent. From-SVN: r84994 --- diff --git a/gcc/cfgloop.c b/gcc/cfgloop.c index c71d048828a0..50f31e67e23e 100644 --- a/gcc/cfgloop.c +++ b/gcc/cfgloop.c @@ -97,8 +97,8 @@ flow_loops_cfg_dump (const struct loops *loops, FILE *file) bool flow_loop_nested_p (const struct loop *outer, const struct loop *loop) { - return loop->depth > outer->depth - && loop->pred[outer->depth] == outer; + return (loop->depth > outer->depth + && loop->pred[outer->depth] == outer); } /* Returns the loop such that LOOP is nested DEPTH (indexed from zero)