summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTed Kremenek <kremenek@apple.com>2008-07-18 04:55:41 +0000
committerTed Kremenek <kremenek@apple.com>2008-07-18 04:55:41 +0000
commit072429320a94ca2dcda9567fbcd021a0168836d4 (patch)
treefa623dcab5c0efa895a6f57a63b83e76e2f34f5e
parent194c58f56db68b7491a4da19ec33388cbdce5cad (diff)
downloadbcm5719-llvm-072429320a94ca2dcda9567fbcd021a0168836d4.tar.gz
bcm5719-llvm-072429320a94ca2dcda9567fbcd021a0168836d4.zip
Remove dead method.
llvm-svn: 53748
-rw-r--r--clang/include/clang/Analysis/PathSensitive/GRExprEngine.h10
1 files changed, 4 insertions, 6 deletions
diff --git a/clang/include/clang/Analysis/PathSensitive/GRExprEngine.h b/clang/include/clang/Analysis/PathSensitive/GRExprEngine.h
index a54b3d7ce57..0102f55cfeb 100644
--- a/clang/include/clang/Analysis/PathSensitive/GRExprEngine.h
+++ b/clang/include/clang/Analysis/PathSensitive/GRExprEngine.h
@@ -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.");
OpenPOWER on IntegriCloud