Don't produce "comparison is always (true|false)" warnings when the

comparison itself is a constant expression. Fixes PR7536.

llvm-svn: 126057
This commit is contained in:
Douglas Gregor 2011-02-19 22:34:59 +00:00
parent b0ed51da10
commit 5b05454f24
3 changed files with 13 additions and 3 deletions

View 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();

View 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);
}

View 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>();
}