From 15e24065a4a8b6b9d58e138969f8f6ac7495d837 Mon Sep 17 00:00:00 2001 From: Anna Zaks Date: Fri, 7 Oct 2011 22:35:23 +0000 Subject: [PATCH] [analyzer] Remove dead code. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@141432 91177308-0d34-0410-b5e6-96231b3b80d8 --- .../clang/StaticAnalyzer/Core/PathSensitive/CoreEngine.h | 9 +-------- 1 file changed, 1 insertion(+), 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 -- 2.50.1