diff options
author | Anna Zaks <ganna@apple.com> | 2012-03-28 19:59:16 +0000 |
---|---|---|
committer | Anna Zaks <ganna@apple.com> | 2012-03-28 19:59:16 +0000 |
commit | 72eee39df729a6cc219bce16d53d7fca44954aba (patch) | |
tree | 6bcdce5619c89a5005475a99da741df54ddb18a4 /clang/lib/StaticAnalyzer/Core/ExprEngine.cpp | |
parent | cfd029fd9101731be2d47603e435062d52ea7cd7 (diff) | |
download | bcm5719-llvm-72eee39df729a6cc219bce16d53d7fca44954aba.tar.gz bcm5719-llvm-72eee39df729a6cc219bce16d53d7fca44954aba.zip |
[analyzer] Enable retry exhausted without inlining by default.
llvm-svn: 153591
Diffstat (limited to 'clang/lib/StaticAnalyzer/Core/ExprEngine.cpp')
-rw-r--r-- | clang/lib/StaticAnalyzer/Core/ExprEngine.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/StaticAnalyzer/Core/ExprEngine.cpp b/clang/lib/StaticAnalyzer/Core/ExprEngine.cpp index a53ffd4eb5c..fc2a756eb39 100644 --- a/clang/lib/StaticAnalyzer/Core/ExprEngine.cpp +++ b/clang/lib/StaticAnalyzer/Core/ExprEngine.cpp @@ -1053,7 +1053,7 @@ void ExprEngine::processCFGBlockEntrance(const BlockEdge &L, // no-inlining policy in the state and enqueuing the new work item on // the list. Replay should almost never fail. Use the stats to catch it // if it does. - if ((AMgr.RetryExhausted && replayWithoutInlining(pred, CalleeLC))) + if ((!AMgr.NoRetryExhausted && replayWithoutInlining(pred, CalleeLC))) return; NumMaxBlockCountReachedInInlined++; } else |