diff options
author | Anna Zaks <ganna@apple.com> | 2013-01-30 19:12:36 +0000 |
---|---|---|
committer | Anna Zaks <ganna@apple.com> | 2013-01-30 19:12:36 +0000 |
commit | 6bbe1442a5f3f5f761582a9005e9edf1d49c4da2 (patch) | |
tree | 74f3c4bc239a9a3ab10614fd2a8388d607c837e9 /lib/Frontend/CompilerInvocation.cpp | |
parent | 86ff12c8a8a356ca284ca7687749216fbfd74519 (diff) |
[analyzer] Use analyzer config for max-inlinable-size option.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@173957 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Frontend/CompilerInvocation.cpp')
-rw-r--r-- | lib/Frontend/CompilerInvocation.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/Frontend/CompilerInvocation.cpp b/lib/Frontend/CompilerInvocation.cpp index b4b0ddb1c4..ae240577d1 100644 --- a/lib/Frontend/CompilerInvocation.cpp +++ b/lib/Frontend/CompilerInvocation.cpp @@ -224,9 +224,6 @@ static bool ParseAnalyzerArgs(AnalyzerOptions &Opts, ArgList &Args, Opts.InlineMaxStackDepth = Args.getLastArgIntValue(OPT_analyzer_inline_max_stack_depth, Opts.InlineMaxStackDepth, Diags); - Opts.InlineMaxFunctionSize = - Args.getLastArgIntValue(OPT_analyzer_inline_max_function_size, - Opts.InlineMaxFunctionSize, Diags); Opts.CheckersControlList.clear(); for (arg_iterator it = Args.filtered_begin(OPT_analyzer_checker, |