Add parens so emacs will properly indent.
authorRichard Kenner <kenner@gcc.gnu.org>
Wed, 21 Jul 2004 02:04:00 +0000 (22:04 -0400)
committerRichard Kenner <kenner@gcc.gnu.org>
Wed, 21 Jul 2004 02:04:00 +0000 (22:04 -0400)
From-SVN: r84994

gcc/cfgloop.c

index c71d048828a09b498d94233b9506bec7e234c313..50f31e67e23e4c667dff8fa36582edb61ccd9207 100644 (file)
@@ -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)