Commit 7ea7e058 by Richard Kenner

Add parens so emacs will properly indent.

From-SVN: r84994
parent 80c7a9eb
...@@ -97,8 +97,8 @@ flow_loops_cfg_dump (const struct loops *loops, FILE *file) ...@@ -97,8 +97,8 @@ flow_loops_cfg_dump (const struct loops *loops, FILE *file)
bool bool
flow_loop_nested_p (const struct loop *outer, const struct loop *loop) flow_loop_nested_p (const struct loop *outer, const struct loop *loop)
{ {
return loop->depth > outer->depth return (loop->depth > outer->depth
&& loop->pred[outer->depth] == outer; && loop->pred[outer->depth] == outer);
} }
/* Returns the loop such that LOOP is nested DEPTH (indexed from zero) /* Returns the loop such that LOOP is nested DEPTH (indexed from zero)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment