Remove unused utility methods of GRStmtNodeBuilder.

llvm-svn: 80237
This commit is contained in:
Zhongxing Xu 2009-08-27 09:14:03 +00:00
parent dd179f303a
commit 16ba5f1cfb
1 changed files with 0 additions and 7 deletions

View 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.