Remove dead method.

llvm-svn: 53748
This commit is contained in:
Ted Kremenek 2008-07-18 04:55:41 +00:00
parent 194c58f56d
commit 072429320a
1 changed files with 4 additions and 6 deletions

View File

@ -550,9 +550,10 @@ protected:
return R.isValid() ? getTF().EvalBinOp(*this, Op, L, cast<NonLVal>(R)) : R;
}
RVal EvalBinOp(BinaryOperator::Opcode Op, NonLVal L, NonLVal R) {
return R.isValid() ? getTF().EvalBinOp(*this, Op, L, R) : R;
}
void EvalBinOp(ExplodedNodeSet<ValueState>& Dst, Expr* E,
BinaryOperator::Opcode Op, NonLVal L, NonLVal R,
ExplodedNode<ValueState>* Pred);
RVal EvalBinOp(BinaryOperator::Opcode Op, RVal L, RVal R) {
@ -582,9 +583,6 @@ protected:
return getTF().EvalBinOp(*this, Op, cast<NonLVal>(L), cast<NonLVal>(R));
}
void EvalBinOp(ExplodedNodeSet<ValueState>& Dst, Expr* E,
BinaryOperator::Opcode Op,
NonLVal L, NonLVal R, ExplodedNode<ValueState>* Pred);
void EvalCall(NodeSet& Dst, CallExpr* CE, RVal L, NodeTy* Pred) {
assert (Builder && "GRStmtNodeBuilder must be defined.");