aboutsummaryrefslogtreecommitdiff
path: root/gcc/tree-cfg.c
diff options
context:
space:
mode:
authorCary Coutant <ccoutant@google.com>2009-07-24 23:29:23 +0000
committerCary Coutant <ccoutant@gcc.gnu.org>2009-07-24 16:29:23 -0700
commit2a2869d6c57d1186e209d58d2f875e2f3180049e (patch)
treec74559800c3434faa97fec95fe00c0202a5852cb /gcc/tree-cfg.c
parentb524249cbec62f71245b7cccddb046150beb4189 (diff)
downloadgcc-2a2869d6c57d1186e209d58d2f875e2f3180049e.zip
gcc-2a2869d6c57d1186e209d58d2f875e2f3180049e.tar.gz
gcc-2a2869d6c57d1186e209d58d2f875e2f3180049e.tar.bz2
* tree-cfg.c (assign_discriminator): Add explicit parentheses.
From-SVN: r150068
Diffstat (limited to 'gcc/tree-cfg.c')
-rw-r--r--gcc/tree-cfg.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/tree-cfg.c b/gcc/tree-cfg.c
index d818b6b..49345c2 100644
--- a/gcc/tree-cfg.c
+++ b/gcc/tree-cfg.c
@@ -763,8 +763,8 @@ assign_discriminator (location_t locus, basic_block bb)
first_in_to_bb = first_non_label_stmt (bb);
last_in_to_bb = last_stmt (bb);
- if (first_in_to_bb && same_line_p (locus, gimple_location (first_in_to_bb))
- || last_in_to_bb && same_line_p (locus, gimple_location (last_in_to_bb)))
+ if ((first_in_to_bb && same_line_p (locus, gimple_location (first_in_to_bb)))
+ || (last_in_to_bb && same_line_p (locus, gimple_location (last_in_to_bb))))
bb->discriminator = next_discriminator_for_locus (locus);
}