re PR c/64610 (No -Wbool-compare warning on "(0 != a) >= 0")
authorMarek Polacek <polacek@redhat.com>
Wed, 29 Apr 2015 18:13:44 +0000 (18:13 +0000)
committerMarek Polacek <mpolacek@gcc.gnu.org>
Wed, 29 Apr 2015 18:13:44 +0000 (18:13 +0000)
PR c/64610
* c-common.c (maybe_warn_bool_compare): Warn when comparing a boolean
with 0/1.

* c-c++-common/Wbool-compare-1.c (fn1): Remove a few lines.
* c-c++-common/Wbool-compare-2.c: New test.

From-SVN: r222587

gcc/c-family/ChangeLog
gcc/c-family/c-common.c
gcc/testsuite/ChangeLog
gcc/testsuite/c-c++-common/Wbool-compare-1.c
gcc/testsuite/c-c++-common/Wbool-compare-2.c [new file with mode: 0644]

index 8d10487d96c1ff5a3ce5dafb29762b7b3ee14d85..44e21f3dde61b7a7938ee84322fb94d064bc52a5 100644 (file)
@@ -1,3 +1,9 @@
+2015-04-29  Marek Polacek  <polacek@redhat.com>
+
+       PR c/64610
+       * c-common.c (maybe_warn_bool_compare): Warn when comparing a boolean
+       with 0/1.
+
 2015-04-29  Jakub Jelinek  <jakub@redhat.com>
 
        * c-common.h (omp_clause_mask): Unconditionally define as a class.
index 30456c6a552cf446f330d3f0978383d36144c402..eecbe41d4f6fbb2b34db527c4b4610f5c7b833c3 100644 (file)
@@ -11910,8 +11910,8 @@ maybe_warn_bool_compare (location_t loc, enum tree_code code, tree op0,
 
   if (!integer_zerop (cst) && !integer_onep (cst))
     {
-      int sign = (TREE_CODE (op0) == INTEGER_CST)
-                ? tree_int_cst_sgn (cst) : -tree_int_cst_sgn (cst);
+      int sign = (TREE_CODE (op0) == INTEGER_CST
+                ? tree_int_cst_sgn (cst) : -tree_int_cst_sgn (cst));
       if (code == EQ_EXPR
          || ((code == GT_EXPR || code == GE_EXPR) && sign < 0)
          || ((code == LT_EXPR || code == LE_EXPR) && sign > 0))
@@ -11921,6 +11921,18 @@ maybe_warn_bool_compare (location_t loc, enum tree_code code, tree op0,
        warning_at (loc, OPT_Wbool_compare, "comparison of constant %qE "
                    "with boolean expression is always true", cst);
     }
+  else if (integer_zerop (cst) || integer_onep (cst))
+    {
+      /* Do some magic to get the right diagnostics.  */
+      bool flag = TREE_CODE (op0) == INTEGER_CST;
+      flag = integer_zerop (cst) ? flag : !flag;
+      if ((code == GE_EXPR && !flag) || (code == LE_EXPR && flag))
+       warning_at (loc, OPT_Wbool_compare, "comparison of constant %qE "
+                   "with boolean expression is always true", cst);
+      else if ((code == LT_EXPR && !flag) || (code == GT_EXPR && flag))
+       warning_at (loc, OPT_Wbool_compare, "comparison of constant %qE "
+                   "with boolean expression is always false", cst);
+    }
 }
 
 /* The C and C++ parsers both use vectors to hold function arguments.
index 7ade07c7f1d261d16710446127861eded366693d..7ff95665c48ea4aa92a8e095cf16323a05bfe9a7 100644 (file)
@@ -1,3 +1,9 @@
+2015-04-29  Marek Polacek  <polacek@redhat.com>
+
+       PR c/64610
+       * c-c++-common/Wbool-compare-1.c (fn1): Remove a few lines.
+       * c-c++-common/Wbool-compare-2.c: New test.
+
 2015-04-29  Alan Lawrence  <alan.lawrence@arm.com>
 
        PR target/65770
index 5b03e0682109186775c5c3bdc270eeca0db62a4c..2f435f651e682cb9dbc0e7c9cc22863ed2ea3208 100644 (file)
@@ -72,15 +72,10 @@ fn1 (bool b)
   r = b == true;
   r = b != true;
 
-  /* Some of these don't make much sense, but we don't warn.  */
-  r = b < false;
-  r = b >= false;
   r = b <= false;
   r = b > false;
   r = b < true;
   r = b >= true;
-  r = b <= true;
-  r = b > true;
 }
 
 void
diff --git a/gcc/testsuite/c-c++-common/Wbool-compare-2.c b/gcc/testsuite/c-c++-common/Wbool-compare-2.c
new file mode 100644 (file)
index 0000000..6330322
--- /dev/null
@@ -0,0 +1,100 @@
+/* PR c/64610 */
+/* { dg-do compile } */
+/* { dg-options "-Wbool-compare" } */
+
+#ifndef __cplusplus
+# define bool _Bool
+# define true 1
+# define false 0
+#endif
+
+extern bool foo (void);
+
+enum { A, B };
+
+int
+fn1 (bool b)
+{
+  int r = 0;
+
+  r += b >= 0; /* { dg-warning "with boolean expression is always true" } */
+  r += b > 0;
+  r += b < 0; /* { dg-warning "with boolean expression is always false" } */
+  r += b <= 0;
+
+  r += b >= 1;
+  r += b > 1; /* { dg-warning "with boolean expression is always false" } */
+  r += b < 1;
+  r += b <= 1; /* { dg-warning "with boolean expression is always true" } */
+
+  r += foo () >= 0; /* { dg-warning "with boolean expression is always true" } */
+  r += foo () > 0;
+  r += foo () < 0; /* { dg-warning "with boolean expression is always false" } */
+  r += foo () <= 0;
+
+  r += foo () >= 1;
+  r += foo () > 1; /* { dg-warning "with boolean expression is always false" } */
+  r += foo () < 1;
+  r += foo () <= 1; /* { dg-warning "with boolean expression is always true" } */
+
+  r += b >= A; /* { dg-warning "with boolean expression is always true" } */
+  r += b > A;
+  r += b < A; /* { dg-warning "with boolean expression is always false" } */
+  r += b <= A;
+
+  r += b >= B;
+  r += b > B; /* { dg-warning "with boolean expression is always false" } */
+  r += b < B;
+  r += b <= B; /* { dg-warning "with boolean expression is always true" } */
+
+  /* Swap LHS and RHS.  */
+  r += 0 >= b;
+  r += 0 > b; /* { dg-warning "with boolean expression is always false" } */
+  r += 0 < b;
+  r += 0 <= b; /* { dg-warning "with boolean expression is always true" } */
+
+  r += 1 >= b; /* { dg-warning "with boolean expression is always true" } */
+  r += 1 > b;
+  r += 1 < b; /* { dg-warning "with boolean expression is always false" } */
+  r += 1 <= b;
+
+  r += 0 >= foo ();
+  r += 0 > foo (); /* { dg-warning "with boolean expression is always false" } */
+  r += 0 < foo ();
+  r += 0 <= foo (); /* { dg-warning "with boolean expression is always true" } */
+
+  r += 1 >= foo (); /* { dg-warning "with boolean expression is always true" } */
+  r += 1 > foo ();
+  r += 1 < foo (); /* { dg-warning "with boolean expression is always false" } */
+  r += 1 <= foo ();
+
+  r += A >= b;
+  r += A > b; /* { dg-warning "with boolean expression is always false" } */
+  r += A < b;
+  r += A <= b; /* { dg-warning "with boolean expression is always true" } */
+
+  r += B >= b; /* { dg-warning "with boolean expression is always true" } */
+  r += B > b;
+  r += B < b; /* { dg-warning "with boolean expression is always false" } */
+  r += B <= b;
+
+  return r;
+}
+
+int
+fn2 (int i, int j)
+{
+  int r = 0;
+
+  r += (i == j) >= 0; /* { dg-warning "with boolean expression is always true" } */
+  r += (i == j) > 0;
+  r += (i == j) < 0; /* { dg-warning "with boolean expression is always false" } */
+  r += (i == j) <= 0;
+
+  r += (i == j) >= 1;
+  r += (i == j) > 1; /* { dg-warning "with boolean expression is always false" } */
+  r += (i == j) < 1;
+  r += (i == j) <= 1; /* { dg-warning "with boolean expression is always true" } */
+
+  return r;
+}