diff options
Diffstat (limited to 'gcc/cfgloop.c')
-rw-r--r-- | gcc/cfgloop.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/cfgloop.c b/gcc/cfgloop.c index c71d048..50f31e6 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) |