diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Checker/GRCoreEngine.cpp | 2 | ||||
-rw-r--r-- | lib/Checker/GRExprEngine.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/Checker/GRCoreEngine.cpp b/lib/Checker/GRCoreEngine.cpp index 5125f366de..6b7a2cb812 100644 --- a/lib/Checker/GRCoreEngine.cpp +++ b/lib/Checker/GRCoreEngine.cpp @@ -703,7 +703,7 @@ void GRCallEnterNodeBuilder::GenerateNode(const GRState *state, OldMgr.getStoreManagerCreator(), OldMgr.getConstraintManagerCreator(), OldMgr.getIndexer(), - OldMgr.getMaxNodes(), OldMgr.getMaxLoop(), + OldMgr.getMaxNodes(), OldMgr.getMaxVisit(), OldMgr.shouldVisualizeGraphviz(), OldMgr.shouldVisualizeUbigraph(), OldMgr.shouldPurgeDead(), 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(); } //===----------------------------------------------------------------------===// |