aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTed Kremenek <kremenek@apple.com>2008-03-07 22:59:32 +0000
committerTed Kremenek <kremenek@apple.com>2008-03-07 22:59:32 +0000
commitdfbc9579d7777d1acbfd34828f523b18ce4c326d (patch)
tree58b797014a2ea4c0676c361befc22f689a33f5fb
parentffe0f43806d4823271c2406c1fccc2373115c36a (diff)
Increased worklist limit for GRSimpleVals.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@48037 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--Analysis/GRSimpleVals.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Analysis/GRSimpleVals.cpp b/Analysis/GRSimpleVals.cpp
index efe435b884..c1bb9fd41b 100644
--- a/Analysis/GRSimpleVals.cpp
+++ b/Analysis/GRSimpleVals.cpp
@@ -101,7 +101,7 @@ unsigned RunGRSimpleVals(CFG& cfg, FunctionDecl& FD, ASTContext& Ctx,
CheckerState->setTransferFunctions(GRSV);
// Execute the worklist algorithm.
- Engine.ExecuteWorkList(20000);
+ Engine.ExecuteWorkList(50000);
SourceManager& SrcMgr = Ctx.getSourceManager();