gimple.h (gimple_cond_make_false): Use 0 != 0.
authorRichard Biener <rguenther@suse.de>
Thu, 23 Jul 2015 07:22:06 +0000 (07:22 +0000)
committerRichard Biener <rguenth@gcc.gnu.org>
Thu, 23 Jul 2015 07:22:06 +0000 (07:22 +0000)
2015-07-23  Richard Biener  <rguenther@suse.de>

* gimple.h (gimple_cond_make_false): Use 0 != 0.
(gimple_cond_make_true): Use 1 != 0.

From-SVN: r226087

gcc/ChangeLog
gcc/gimple.h

index b926ed038071e9d5e91420fd26d2abfa70b57a3f..7cd07f9d7d692d4fe537261b9ac5656dedadfb7d 100644 (file)
@@ -1,3 +1,8 @@
+2015-07-23  Richard Biener  <rguenther@suse.de>
+
+       * gimple.h (gimple_cond_make_false): Use 0 != 0.
+       (gimple_cond_make_true): Use 1 != 0.
+
 2015-07-22  DJ Delorie  <dj@redhat.com>
 
        * config/msp430/t-msp430 (MULTILIB_DIRNAMES): Remove trailing
index 195ad3ce42ce48837509d660f70c87571c8f2a99..596d28d31d19a718962a6dd45e754198f01adea1 100644 (file)
@@ -3187,9 +3187,9 @@ gimple_cond_false_label (const gcond *gs)
 static inline void
 gimple_cond_make_false (gcond *gs)
 {
-  gimple_cond_set_lhs (gs, boolean_true_node);
+  gimple_cond_set_lhs (gs, boolean_false_node);
   gimple_cond_set_rhs (gs, boolean_false_node);
-  gs->subcode = EQ_EXPR;
+  gs->subcode = NE_EXPR;
 }
 
 
@@ -3199,8 +3199,8 @@ static inline void
 gimple_cond_make_true (gcond *gs)
 {
   gimple_cond_set_lhs (gs, boolean_true_node);
-  gimple_cond_set_rhs (gs, boolean_true_node);
-  gs->subcode = EQ_EXPR;
+  gimple_cond_set_rhs (gs, boolean_false_node);
+  gs->subcode = NE_EXPR;
 }
 
 /* Check if conditional statemente GS is of the form 'if (1 == 1)',