]> granicus.if.org Git - clang/commitdiff
Don't produce "comparison is always (true|false)" warnings when the
authorDouglas Gregor <dgregor@apple.com>
Sat, 19 Feb 2011 22:34:59 +0000 (22:34 +0000)
committerDouglas Gregor <dgregor@apple.com>
Sat, 19 Feb 2011 22:34:59 +0000 (22:34 +0000)
comparison itself is a constant expression. Fixes PR7536.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@126057 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Sema/SemaChecking.cpp
test/SemaCXX/compare.cpp
test/SemaCXX/type-dependent-exprs.cpp

index 2cddac5f6674cddd4740394eee1ab78a7e4532a6..556665483e6490108ed7ef0a44f942158d03f15c 100644 (file)
@@ -2581,7 +2581,11 @@ void AnalyzeComparison(Sema &S, BinaryOperator *E) {
   // We don't do anything special if this isn't an unsigned integral
   // comparison:  we're only interested in integral comparisons, and
   // signed comparisons only happen in cases we don't care to warn about.
-  if (!T->hasUnsignedIntegerRepresentation())
+  //
+  // We also don't care about value-dependent expressions or expressions
+  // whose result is a constant.
+  if (!T->hasUnsignedIntegerRepresentation()
+      || E->isValueDependent() || E->isIntegerConstantExpr(S.Context))
     return AnalyzeImpConvsInComparison(S, E);
 
   Expr *lex = E->getLHS()->IgnoreParenImpCasts();
index ebecc0633edad219324cd2ccd50bf978058562e9..ca8af2186f74c43e2539f7d9e52266e74b97d981 100644 (file)
@@ -206,3 +206,9 @@ void test2(int i, void *vp) {
   if (vp < 0) { }
   if (test1 < e) { } // expected-error{{comparison between pointer and integer}}
 }
+
+// PR7536
+static const unsigned int kMax = 0;
+int pr7536() {
+  return (kMax > 0);
+}
index 37d7cee8816186a4a74b1d2dd303169640016a6e..398c3cb0339bb1f8e40f7823429bcc11041101c2 100644 (file)
@@ -26,10 +26,10 @@ T f(T x) {
 // This one entered into an infinite loop.
 template <unsigned long N>
 void rdar8520617() {
-  if (N > 1) { } // expected-warning {{comparison of 0 > unsigned expression is always false}}
+  if (N > 1) { }
 }
 
 int f2() {
-  rdar8520617<0>(); // expected-note {{in instantiation}}
+  rdar8520617<0>();
 }