diff options
author | 2016-09-30 11:38:56 +0000 | |
---|---|---|
committer | 2016-09-30 11:38:56 +0000 | |
commit | ce157a6864bd346152bef1b66d050cfb144f56b5 (patch) | |
tree | 680e63bce75f85faf6519d72b74c1712d54e141d /compiler/driver/compiler_driver.h | |
parent | 394b8b23dff716daaf64c79684d13575f6ff2d05 (diff) | |
parent | 762869dee6e0eadab5be1c606792d6693bbabf4e (diff) |
Merge "Simplify our intrinsic recognizer."
Diffstat (limited to 'compiler/driver/compiler_driver.h')
-rw-r--r-- | compiler/driver/compiler_driver.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/compiler/driver/compiler_driver.h b/compiler/driver/compiler_driver.h index 41f0d36c79..52a04cc46b 100644 --- a/compiler/driver/compiler_driver.h +++ b/compiler/driver/compiler_driver.h @@ -57,7 +57,6 @@ class CompiledClass; class CompiledMethod; class CompilerOptions; class DexCompilationUnit; -class DexFileToMethodInlinerMap; struct InlineIGetIPutData; class InstructionSetFeatures; class ParallelCompilationManager; @@ -88,7 +87,6 @@ class CompilerDriver { // classes. CompilerDriver(const CompilerOptions* compiler_options, VerificationResults* verification_results, - DexFileToMethodInlinerMap* method_inliner_map, Compiler::Kind compiler_kind, InstructionSet instruction_set, const InstructionSetFeatures* instruction_set_features, @@ -133,10 +131,6 @@ class CompilerDriver { return verification_results_; } - DexFileToMethodInlinerMap* GetMethodInlinerMap() const { - return method_inliner_map_; - } - InstructionSet GetInstructionSet() const { return instruction_set_; } @@ -603,7 +597,6 @@ class CompilerDriver { const CompilerOptions* const compiler_options_; VerificationResults* const verification_results_; - DexFileToMethodInlinerMap* const method_inliner_map_; std::unique_ptr<Compiler> compiler_; Compiler::Kind compiler_kind_; |