diff options
author | Anna Zaks <ganna@apple.com> | 2011-10-07 22:35:23 +0000 |
---|---|---|
committer | Anna Zaks <ganna@apple.com> | 2011-10-07 22:35:23 +0000 |
commit | 15e24065a4a8b6b9d58e138969f8f6ac7495d837 (patch) | |
tree | b501b1cf9707aba371b34f12b0517293fce244d1 | |
parent | a5937bbfd19e61d651a58b0f0ffeef68457902a5 (diff) |
[analyzer] Remove dead code.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@141432 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/clang/StaticAnalyzer/Core/PathSensitive/CoreEngine.h | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/include/clang/StaticAnalyzer/Core/PathSensitive/CoreEngine.h b/include/clang/StaticAnalyzer/Core/PathSensitive/CoreEngine.h index e2ea13d1c5..350b669e67 100644 --- a/include/clang/StaticAnalyzer/Core/PathSensitive/CoreEngine.h +++ b/include/clang/StaticAnalyzer/Core/PathSensitive/CoreEngine.h @@ -202,13 +202,6 @@ public: B.getBlockID()); } - ExplodedNode *generateNode(PostStmt PP, - const ProgramState *St, - ExplodedNode *Pred) { - hasGeneratedNode = true; - return generateNodeInternal(PP, St, Pred); - } - ExplodedNode *generateNode(const Stmt *S, const ProgramState *St, ExplodedNode *Pred, @@ -245,7 +238,7 @@ public: generateNodeInternal(const Stmt *S, const ProgramState *State, ExplodedNode *Pred, - ProgramPoint::Kind K = ProgramPoint::PostStmtKind, + ProgramPoint::Kind K, const ProgramPointTag *tag = 0); /// getStmt - Return the current block-level expression associated with |