diff options
author | Ted Kremenek <kremenek@apple.com> | 2010-09-23 21:43:44 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2010-09-23 21:43:44 +0000 |
commit | 6274be47faafff014e607f3e26e7779fa75e90e8 (patch) | |
tree | e76e05cea6a5ca87b1fda7f2f0a7b3aa7f6b90c4 /clang | |
parent | 24fb1d03d3fb3770f5e6a53f26a693a02ca4d57f (diff) | |
download | bcm5719-llvm-6274be47faafff014e607f3e26e7779fa75e90e8.tar.gz bcm5719-llvm-6274be47faafff014e607f3e26e7779fa75e90e8.zip |
When warning about comparing an unsigned int to being >= 0, don't issue a warning if the zero value was an
enum or was expanded from a macro.
Fixes: <rdar://problem/8414119>
llvm-svn: 114695
Diffstat (limited to 'clang')
-rw-r--r-- | clang/lib/Sema/SemaChecking.cpp | 12 | ||||
-rw-r--r-- | clang/test/Sema/compare.c | 17 |
2 files changed, 28 insertions, 1 deletions
diff --git a/clang/lib/Sema/SemaChecking.cpp b/clang/lib/Sema/SemaChecking.cpp index 790e7671ed9..c4e86875ed8 100644 --- a/clang/lib/Sema/SemaChecking.cpp +++ b/clang/lib/Sema/SemaChecking.cpp @@ -2449,7 +2449,17 @@ bool IsSameFloatAfterCast(const APValue &value, void AnalyzeImplicitConversions(Sema &S, Expr *E); -bool IsZero(Sema &S, Expr *E) { +static bool IsZero(Sema &S, Expr *E) { + // Suppress cases where we are comparing against an enum constant. + if (const DeclRefExpr *DR = + dyn_cast<DeclRefExpr>(E->IgnoreParenImpCasts())) + if (isa<EnumConstantDecl>(DR->getDecl())) + return false; + + // Suppress cases where the '0' value is expanded from a macro. + if (E->getLocStart().isMacroID()) + return false; + llvm::APSInt Value; return E->isIntegerConstantExpr(Value, S.Context) && Value == 0; } diff --git a/clang/test/Sema/compare.c b/clang/test/Sema/compare.c index b2c35633953..2a6917e6079 100644 --- a/clang/test/Sema/compare.c +++ b/clang/test/Sema/compare.c @@ -288,3 +288,20 @@ int test6(unsigned i, unsigned power) { unsigned x = (i < (1 << power) ? i : 0); return x != 3 ? 1 << power : i; } + +// <rdar://problem/8414119> enum >= (enum)0 comparison should not generate any warnings +enum rdar8414119_Vals { X, Y, Z }; +#define ZERO 0 +#define CHECK(x) (x >= X) +void rdar8414119_foo(enum rdar8414119_Vals v) { + if (CHECK(v)) // no-warning + return; + if (v >= X) // no-warning + return; +} +int rdar8414119_bar(unsigned x) { + return x >= ZERO; // no-warning +} +#undef ZERO +#undef CHECK + |