diff options
-rw-r--r-- | include/clang/Analysis/PathSensitive/GRExprEngine.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/include/clang/Analysis/PathSensitive/GRExprEngine.h b/include/clang/Analysis/PathSensitive/GRExprEngine.h index 8e66b9c327..7fa5297daa 100644 --- a/include/clang/Analysis/PathSensitive/GRExprEngine.h +++ b/include/clang/Analysis/PathSensitive/GRExprEngine.h @@ -358,11 +358,7 @@ public: RVal EvalComplement(RVal X) { return X.isValid() ? TF->EvalComplement(ValMgr, cast<NonLVal>(X)) : X; } - - RVal EvalBinOp(BinaryOperator::Opcode Op, LVal L, RVal R) { - return R.isValid() ? TF->EvalBinOp(ValMgr, Op, L, cast<NonLVal>(R)) : R; - } - + RVal EvalBinOp(BinaryOperator::Opcode Op, NonLVal L, RVal R) { return R.isValid() ? TF->EvalBinOp(ValMgr, Op, L, cast<NonLVal>(R)) : R; } |