diff options
Diffstat (limited to 'lib/AST/ExprConstant.cpp')
-rw-r--r-- | lib/AST/ExprConstant.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/AST/ExprConstant.cpp b/lib/AST/ExprConstant.cpp index 45cf24b963..fce59133c1 100644 --- a/lib/AST/ExprConstant.cpp +++ b/lib/AST/ExprConstant.cpp @@ -927,7 +927,7 @@ bool IntExprEvaluator::VisitBinaryOperator(const BinaryOperator *E) { bool Result; if (E->getOpcode() == BinaryOperator::EQ) { Result = LHSValue.getLValueOffset() == RHSValue.getLValueOffset(); - } else if (E->getOpcode() == BinaryOperator::NE) { + } else { Result = LHSValue.getLValueOffset() != RHSValue.getLValueOffset(); } return Success(Result, E); |