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.


_______________________________________________
cfe-commits mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits

Reply via email to