summaryrefslogtreecommitdiff
path: root/compiler/driver/compiler_driver.cc
diff options
context:
space:
mode:
author Vladimir Marko <vmarko@google.com> 2013-12-18 09:37:00 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2013-12-18 09:37:00 +0000
commit7db86629a227724e61dbe24d3132260072fa04b3 (patch)
tree97f7b18686eb9d742b25f01b91e2387865f31ec6 /compiler/driver/compiler_driver.cc
parent43c941fe0e1ba6e6ff13a6035e37db031c341fd6 (diff)
parent5816ed48bc339c983b40dc493e96b97821ce7966 (diff)
Merge "Detect special methods at the end of verification."
Diffstat (limited to 'compiler/driver/compiler_driver.cc')
-rw-r--r--compiler/driver/compiler_driver.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/compiler/driver/compiler_driver.cc b/compiler/driver/compiler_driver.cc
index dbebd26db8..11245419f7 100644
--- a/compiler/driver/compiler_driver.cc
+++ b/compiler/driver/compiler_driver.cc
@@ -337,11 +337,13 @@ extern "C" void compilerLLVMSetBitcodeFileName(art::CompilerDriver& driver,
std::string const& filename);
CompilerDriver::CompilerDriver(VerifiedMethodsData* verified_methods_data,
+ DexFileToMethodInlinerMap* method_inliner_map,
CompilerBackend compiler_backend, InstructionSet instruction_set,
InstructionSetFeatures instruction_set_features,
bool image, DescriptorSet* image_classes, size_t thread_count,
bool dump_stats)
: verified_methods_data_(verified_methods_data),
+ method_inliner_map_(method_inliner_map),
compiler_backend_(compiler_backend),
instruction_set_(instruction_set),
instruction_set_features_(instruction_set_features),