diff options
author | Tom Care <tom.care@uqconnect.edu.au> | 2010-09-14 21:35:27 +0000 |
---|---|---|
committer | Tom Care <tom.care@uqconnect.edu.au> | 2010-09-14 21:35:27 +0000 |
commit | 68625cf3eef2a6948fe42134aeeda91ed15e63d3 (patch) | |
tree | a3259e848406e0c3d511af592269c4d2370cfd59 /lib/Checker/GRExprEngine.cpp | |
parent | edeb6c9b47e802da1a9a149ea1ea4f1ddd7f6182 (diff) |
Rename 'MaxLoop' to 'MaxVisit' in AnalysisManager to more correctly reflect that we aborted analysis may not necessarily be due to a loop.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@113862 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Checker/GRExprEngine.cpp')
-rw-r--r-- | lib/Checker/GRExprEngine.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Checker/GRExprEngine.cpp b/lib/Checker/GRExprEngine.cpp index 39a5cc1fa9..bead4e1c1a 100644 --- a/lib/Checker/GRExprEngine.cpp +++ b/lib/Checker/GRExprEngine.cpp @@ -1213,7 +1213,7 @@ bool GRExprEngine::ProcessBlockEntrance(const CFGBlock* B, const ExplodedNode *Pred, GRBlockCounter BC) { return BC.getNumVisited(Pred->getLocationContext()->getCurrentStackFrame(), - B->getBlockID()) < AMgr.getMaxLoop(); + B->getBlockID()) < AMgr.getMaxVisit(); } //===----------------------------------------------------------------------===// |