]> granicus.if.org Git - clang/commitdiff
Remove unused utility methods of GRStmtNodeBuilder.
authorZhongxing Xu <xuzhongxing@gmail.com>
Thu, 27 Aug 2009 09:14:03 +0000 (09:14 +0000)
committerZhongxing Xu <xuzhongxing@gmail.com>
Thu, 27 Aug 2009 09:14:03 +0000 (09:14 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@80237 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang/Analysis/PathSensitive/GRCoreEngine.h

index aae87c00c327e2465368a24b8d39d7f4733d0664..4d624bcc0faa16dc37a5cfa3ae59a917a443c58f 100644 (file)
@@ -199,13 +199,6 @@ public:
   generateNodeInternal(const Stmt* S, const GRState* State, ExplodedNode* Pred,
                    ProgramPoint::Kind K = ProgramPoint::PostStmtKind,
                    const void *tag = 0);
-
-  ExplodedNode*
-  generateNodeInternal(const Stmt* S,const GRState* State,const void *tag = 0) {
-    ExplodedNode* N = getLastNode();
-    assert (N && "Predecessor of new node is infeasible.");
-    return generateNodeInternal(S, State, N, ProgramPoint::PostStmtKind, tag);
-  }
   
   /// getStmt - Return the current block-level expression associated with
   ///  this builder.