[analyzer] fix operation inversion calculation in ConditionVisitor.

llvm-svn: 137708
This commit is contained in:
Ted Kremenek 2011-08-16 03:44:38 +00:00
parent 77f1fd5e44
commit 01401a54f8
1 changed files with 1 additions and 1 deletions

View File

@ -676,7 +676,7 @@ ConditionVisitor::VisitTrueTest(const Expr *Cond,
case BO_LT: Op = BO_GE; break;
case BO_GT: Op = BO_LE; break;
case BO_LE: Op = BO_GT; break;
case BO_GE: Op = BO_GE; break;
case BO_GE: Op = BO_LT; break;
default:
return 0;
}