forked from OSchip/llvm-project
[analyzer] fix operation inversion calculation in ConditionVisitor.
llvm-svn: 137708
This commit is contained in:
parent
77f1fd5e44
commit
01401a54f8
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue