diff options
author | Zhongxing Xu <xuzhongxing@gmail.com> | 2009-08-27 09:14:03 +0000 |
---|---|---|
committer | Zhongxing Xu <xuzhongxing@gmail.com> | 2009-08-27 09:14:03 +0000 |
commit | 1d8bdd34101651e5ffca93486f9f4034eb0a564f (patch) | |
tree | 18be2bf47a6a5a627f4a8d6cda02d7c6ee063226 | |
parent | 99330ca3e3e5311b8106b631ea25dbc2b924a944 (diff) |
Remove unused utility methods of GRStmtNodeBuilder.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@80237 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/clang/Analysis/PathSensitive/GRCoreEngine.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/include/clang/Analysis/PathSensitive/GRCoreEngine.h b/include/clang/Analysis/PathSensitive/GRCoreEngine.h index aae87c00c3..4d624bcc0f 100644 --- a/include/clang/Analysis/PathSensitive/GRCoreEngine.h +++ b/include/clang/Analysis/PathSensitive/GRCoreEngine.h @@ -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. |