[cfe-commits] r80237 - /cfe/trunk/include/clang/Analysis/PathSensitive/GRCoreEngine.h

Zhongxing Xu xuzhongxing at gmail.com
Thu Aug 27 02:14:03 PDT 2009


Author: zhongxingxu
Date: Thu Aug 27 04:14:03 2009
New Revision: 80237

URL: http://llvm.org/viewvc/llvm-project?rev=80237&view=rev
Log:
Remove unused utility methods of GRStmtNodeBuilder.

Modified:
    cfe/trunk/include/clang/Analysis/PathSensitive/GRCoreEngine.h

Modified: cfe/trunk/include/clang/Analysis/PathSensitive/GRCoreEngine.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Analysis/PathSensitive/GRCoreEngine.h?rev=80237&r1=80236&r2=80237&view=diff

==============================================================================
--- cfe/trunk/include/clang/Analysis/PathSensitive/GRCoreEngine.h (original)
+++ cfe/trunk/include/clang/Analysis/PathSensitive/GRCoreEngine.h Thu Aug 27 04:14:03 2009
@@ -199,13 +199,6 @@
   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.





More information about the cfe-commits mailing list