diff options
author | Ted Kremenek <kremenek@apple.com> | 2008-03-07 22:59:32 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2008-03-07 22:59:32 +0000 |
commit | dfbc9579d7777d1acbfd34828f523b18ce4c326d (patch) | |
tree | 58b797014a2ea4c0676c361befc22f689a33f5fb | |
parent | ffe0f43806d4823271c2406c1fccc2373115c36a (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.cpp | 2 |
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(); |