diff options
author | Ted Kremenek <kremenek@apple.com> | 2011-04-02 02:56:17 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2011-04-02 02:56:17 +0000 |
commit | 66750fa464ace9f8c41666c8585ec71a248c1cca (patch) | |
tree | 2bacebe772d924846b24471c1d65dae030c6a420 /lib/StaticAnalyzer/Core/CoreEngine.cpp | |
parent | 396e4f672b4fc22936f385e0478a09eb223f113a (diff) |
static analyzer: Rename 'BlocksAborted' to 'BlocksExhausted' to reflect that a given CFGBlock was analyzed too many times.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@128760 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/StaticAnalyzer/Core/CoreEngine.cpp')
-rw-r--r-- | lib/StaticAnalyzer/Core/CoreEngine.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/StaticAnalyzer/Core/CoreEngine.cpp b/lib/StaticAnalyzer/Core/CoreEngine.cpp index 08a2068c01..73709e39d0 100644 --- a/lib/StaticAnalyzer/Core/CoreEngine.cpp +++ b/lib/StaticAnalyzer/Core/CoreEngine.cpp @@ -310,7 +310,7 @@ void CoreEngine::HandleBlockEdge(const BlockEdge& L, ExplodedNode* Pred) { for (llvm::SmallVectorImpl<ExplodedNode*>::const_iterator I = nodeBuilder.sinks().begin(), E = nodeBuilder.sinks().end(); I != E; ++I) { - blocksAborted.push_back(std::make_pair(L, *I)); + blocksExhausted.push_back(std::make_pair(L, *I)); } } |