From 4d9985ab390079ccc8b05b6c349026f237567b8f Mon Sep 17 00:00:00 2001 From: Ted Kremenek Date: Fri, 18 Jul 2008 04:55:41 +0000 Subject: [PATCH] Remove dead method. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@53748 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/clang/Analysis/PathSensitive/GRExprEngine.h | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/include/clang/Analysis/PathSensitive/GRExprEngine.h b/include/clang/Analysis/PathSensitive/GRExprEngine.h index a54b3d7ce5..0102f55cfe 100644 --- a/include/clang/Analysis/PathSensitive/GRExprEngine.h +++ b/include/clang/Analysis/PathSensitive/GRExprEngine.h @@ -550,9 +550,10 @@ protected: return R.isValid() ? getTF().EvalBinOp(*this, Op, L, cast(R)) : R; } - RVal EvalBinOp(BinaryOperator::Opcode Op, NonLVal L, NonLVal R) { - return R.isValid() ? getTF().EvalBinOp(*this, Op, L, R) : R; - } + void EvalBinOp(ExplodedNodeSet& Dst, Expr* E, + BinaryOperator::Opcode Op, NonLVal L, NonLVal R, + ExplodedNode* Pred); + RVal EvalBinOp(BinaryOperator::Opcode Op, RVal L, RVal R) { @@ -582,9 +583,6 @@ protected: return getTF().EvalBinOp(*this, Op, cast(L), cast(R)); } - void EvalBinOp(ExplodedNodeSet& Dst, Expr* E, - BinaryOperator::Opcode Op, - NonLVal L, NonLVal R, ExplodedNode* Pred); void EvalCall(NodeSet& Dst, CallExpr* CE, RVal L, NodeTy* Pred) { assert (Builder && "GRStmtNodeBuilder must be defined."); -- 2.40.0