diff options
author | Anna Zaks <ganna@apple.com> | 2011-11-01 22:41:06 +0000 |
---|---|---|
committer | Anna Zaks <ganna@apple.com> | 2011-11-01 22:41:06 +0000 |
commit | cdcc653642d4ac9255c574fabe74a48149e06733 (patch) | |
tree | 34d9f86920b9658e06738881b60fea825717e2f5 /lib/StaticAnalyzer/Core/CoreEngine.cpp | |
parent | a2a860306e3697fcf7a12c5ba59551ca60578968 (diff) |
[analyzer] BranchNodeBuilder should not generate autotransitions.
This fixes radar://10367606
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@143514 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/StaticAnalyzer/Core/CoreEngine.cpp')
-rw-r--r-- | lib/StaticAnalyzer/Core/CoreEngine.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/StaticAnalyzer/Core/CoreEngine.cpp b/lib/StaticAnalyzer/Core/CoreEngine.cpp index 5ab55b5ee3..db007feafb 100644 --- a/lib/StaticAnalyzer/Core/CoreEngine.cpp +++ b/lib/StaticAnalyzer/Core/CoreEngine.cpp @@ -456,6 +456,7 @@ void CoreEngine::generateNode(const ProgramPoint &Loc, void CoreEngine::enqueueStmtNode(ExplodedNode *N, const CFGBlock *Block, unsigned Idx) { + assert(Block); assert (!N->isSink()); // Check if this node entered a callee. |