aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDouglas Gregor <dgregor@apple.com>2011-02-19 22:34:59 +0000
committerDouglas Gregor <dgregor@apple.com>2011-02-19 22:34:59 +0000
commit3e026e323f1bd820fb9c880b1db951c87df94bb4 (patch)
tree76f6208405966d2a464db95e33ab0207bc0489be
parente0fd832b076eb5a1e4a4549687af0dbf2ad57181 (diff)
Don't produce "comparison is always (true|false)" warnings when the
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
-rw-r--r--lib/Sema/SemaChecking.cpp6
-rw-r--r--test/SemaCXX/compare.cpp6
-rw-r--r--test/SemaCXX/type-dependent-exprs.cpp4
3 files changed, 13 insertions, 3 deletions
diff --git a/lib/Sema/SemaChecking.cpp b/lib/Sema/SemaChecking.cpp
index 2cddac5f66..556665483e 100644
--- a/lib/Sema/SemaChecking.cpp
+++ b/lib/Sema/SemaChecking.cpp
@@ -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();
diff --git a/test/SemaCXX/compare.cpp b/test/SemaCXX/compare.cpp
index ebecc0633e..ca8af2186f 100644
--- a/test/SemaCXX/compare.cpp
+++ b/test/SemaCXX/compare.cpp
@@ -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);
+}
diff --git a/test/SemaCXX/type-dependent-exprs.cpp b/test/SemaCXX/type-dependent-exprs.cpp
index 37d7cee881..398c3cb033 100644
--- a/test/SemaCXX/type-dependent-exprs.cpp
+++ b/test/SemaCXX/type-dependent-exprs.cpp
@@ -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>();
}