diff options
author | Cary Coutant <ccoutant@google.com> | 2009-07-24 23:29:23 +0000 |
---|---|---|
committer | Cary Coutant <ccoutant@gcc.gnu.org> | 2009-07-24 16:29:23 -0700 |
commit | 2a2869d6c57d1186e209d58d2f875e2f3180049e (patch) | |
tree | c74559800c3434faa97fec95fe00c0202a5852cb /gcc/tree-cfg.c | |
parent | b524249cbec62f71245b7cccddb046150beb4189 (diff) | |
download | gcc-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.c | 4 |
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); } |