]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Add parens so emacs will properly indent.
authorkenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 21 Jul 2004 02:04:00 +0000 (02:04 +0000)
committerkenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 21 Jul 2004 02:04:00 +0000 (02:04 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@84994 138bc75d-0d04-0410-961f-82ee72b054a4

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)