]> granicus.if.org Git - clang/commitdiff
Remove dead method.
authorTed Kremenek <kremenek@apple.com>
Fri, 18 Jul 2008 04:55:41 +0000 (04:55 +0000)
committerTed Kremenek <kremenek@apple.com>
Fri, 18 Jul 2008 04:55:41 +0000 (04:55 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@53748 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang/Analysis/PathSensitive/GRExprEngine.h

index a54b3d7ce57c1f8bee380215de914ac7e5949a3a..0102f55cfebfc5cc739e6b1beb448f3b47a7083c 100644 (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.");