diff options
| author | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-07-21 02:04:00 +0000 |
|---|---|---|
| committer | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-07-21 02:04:00 +0000 |
| commit | 4b0a8b4642556d1529b35f45a3f4c948bb5df2c1 (patch) | |
| tree | a2375e83e4e8099926990e291e0baa5b7616ff33 /gcc | |
| parent | 3ced8962b4407c13e4e1cb30f153d9f5ad7c5dc2 (diff) | |
| download | ppe42-gcc-4b0a8b4642556d1529b35f45a3f4c948bb5df2c1.tar.gz ppe42-gcc-4b0a8b4642556d1529b35f45a3f4c948bb5df2c1.zip | |
Add parens so emacs will properly indent.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@84994 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc')
| -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 c71d048828a..50f31e67e23 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) |

