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 | b47dbcbc12430fdf3e5a5b9f59cdec5480e89e75 (patch) | |
tree | 20f01d033b72957f3719372fdcbda27b3c41c037 /include/clang/Frontend/AnalyzerOptions.h | |
parent | fb02784df0a218532018d8c54e3ca7e78c2f5f0a (diff) |
[analyzer] Enable retry exhausted without inlining by default.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@153591 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Frontend/AnalyzerOptions.h')
-rw-r--r-- | include/clang/Frontend/AnalyzerOptions.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/clang/Frontend/AnalyzerOptions.h b/include/clang/Frontend/AnalyzerOptions.h index f152f63968..847bfbd64b 100644 --- a/include/clang/Frontend/AnalyzerOptions.h +++ b/include/clang/Frontend/AnalyzerOptions.h @@ -99,7 +99,7 @@ public: unsigned CFGAddInitializers : 1; unsigned EagerlyTrimEGraph : 1; unsigned PrintStats : 1; - unsigned RetryExhausted : 1; + unsigned NoRetryExhausted : 1; unsigned InlineMaxStackDepth; unsigned InlineMaxFunctionSize; AnalysisInliningMode InliningMode; @@ -124,7 +124,7 @@ public: CFGAddInitializers = 0; EagerlyTrimEGraph = 0; PrintStats = 0; - RetryExhausted = 0; + NoRetryExhausted = 0; // Cap the stack depth at 4 calls (5 stack frames, base + 4 calls). InlineMaxStackDepth = 5; InlineMaxFunctionSize = 200; |