diff options
author | 2014-08-27 10:39:02 -0700 | |
---|---|---|
committer | 2014-08-29 10:14:36 -0700 | |
commit | 45b8f1ab2782d02830c77751f883456de799dfb6 (patch) | |
tree | 451b94c30f4b9a25e40600d6993fc1069efa0689 /compiler/dex/quick/quick_compiler.cc | |
parent | c84b7c54c2251344018a4b4e78b122caf7c03b64 (diff) |
ART: Prepare for ELF64.
Make ElfWriterQuick a template class. No functionality change.
Change-Id: I62b60dc9795c4795027e80f0bee6b54622ea49e9
Diffstat (limited to 'compiler/dex/quick/quick_compiler.cc')
-rw-r--r-- | compiler/dex/quick/quick_compiler.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/dex/quick/quick_compiler.cc b/compiler/dex/quick/quick_compiler.cc index 49c16cb899..2c5f79c29a 100644 --- a/compiler/dex/quick/quick_compiler.cc +++ b/compiler/dex/quick/quick_compiler.cc @@ -608,8 +608,8 @@ bool QuickCompiler::WriteElf(art::File* file, const std::vector<const art::DexFile*>& dex_files, const std::string& android_root, bool is_host) const { - return art::ElfWriterQuick::Create(file, oat_writer, dex_files, android_root, is_host, - *GetCompilerDriver()); + return art::ElfWriterQuick32::Create(file, oat_writer, dex_files, android_root, is_host, + *GetCompilerDriver()); } Backend* QuickCompiler::GetCodeGenerator(CompilationUnit* cu, void* compilation_unit) const { |