summaryrefslogtreecommitdiff
path: root/compiler/driver/compiler_options.cc
diff options
context:
space:
mode:
author Santiago Aboy Solanes <solanes@google.com> 2023-11-03 15:42:11 +0000
committer Santiago Aboy Solanes <solanes@google.com> 2023-11-06 14:37:04 +0000
commit4fd854d795a8d6d1572db8529945af3fe182ee4e (patch)
tree2ce2759d6a5ac41bb1e427cfb60327c953310665 /compiler/driver/compiler_options.cc
parentf987c5cf9c8be959fc1ab62cb0e1c29222cc9fc3 (diff)
Deprecate num-dex-methods and top-k-profile-threshold flags
They were unused and did nothing. Test: Presubmit Change-Id: Id651d5834afcdf293939b79d330b198aef0c954c
Diffstat (limited to 'compiler/driver/compiler_options.cc')
-rw-r--r--compiler/driver/compiler_options.cc2
1 files changed, 0 insertions, 2 deletions
diff --git a/compiler/driver/compiler_options.cc b/compiler/driver/compiler_options.cc
index e1245c7121..1ff7b1f55f 100644
--- a/compiler/driver/compiler_options.cc
+++ b/compiler/driver/compiler_options.cc
@@ -41,7 +41,6 @@ CompilerOptions::CompilerOptions()
: compiler_filter_(CompilerFilter::kDefaultCompilerFilter),
huge_method_threshold_(kDefaultHugeMethodThreshold),
large_method_threshold_(kDefaultLargeMethodThreshold),
- num_dex_methods_threshold_(kDefaultNumDexMethodsThreshold),
inline_max_code_units_(kUnsetInlineMaxCodeUnits),
instruction_set_(kRuntimeISA == InstructionSet::kArm ? InstructionSet::kThumb2 : kRuntimeISA),
instruction_set_features_(nullptr),
@@ -65,7 +64,6 @@ CompilerOptions::CompilerOptions()
dump_timings_(false),
dump_pass_timings_(false),
dump_stats_(false),
- top_k_profile_threshold_(kDefaultTopKProfileThreshold),
profile_compilation_info_(nullptr),
verbose_methods_(),
abort_on_hard_verifier_failure_(false),