[analyzer] Revert a regression committed in r156920.

This breaks the build with -triple i386-apple-darwin9.

llvm-svn: 156932
This commit is contained in:
Anna Zaks 2012-05-16 18:46:25 +00:00
parent a620e376e1
commit f8be8595ae
1 changed files with 4 additions and 5 deletions

View File

@ -1062,12 +1062,11 @@ void PR12206(const char *x) {
// Constrain the length of x.
if (strlen(x) != value) return;
// Test relational operators.
clang_analyzer_eval(strlen(x) >= 2); // expected-warning{{TRUE}}
clang_analyzer_eval(2 <= strlen(x)); // expected-warning{{TRUE}}
if (strlen(x) < 2) { (void)*(char*)0; } // no-warning
if (2 > strlen(x)) { (void)*(char*)0; } // no-warning
// Test equality operators.
clang_analyzer_eval(strlen(x) != 1); // expected-warning{{TRUE}}
clang_analyzer_eval(1 != strlen(x)); // expected-warning{{TRUE}}
if (strlen(x) == 1) { (void)*(char*)0; } // no-warning
if (1 == strlen(x)) { (void)*(char*)0; } // no-warning
}