mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-05 08:10:26 +08:00
Add parens so emacs will properly indent.
From-SVN: r84994
This commit is contained in:
parent
80c7a9eb12
commit
7ea7e0584d
@ -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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user