diff options
author | Nicolas Geoffray <ngeoffray@google.com> | 2014-09-02 08:12:09 +0000 |
---|---|---|
committer | Nicolas Geoffray <ngeoffray@google.com> | 2014-09-02 08:12:09 +0000 |
commit | f9b87b1eece0e03578c4d1b627f1d5e8691a539a (patch) | |
tree | 451b94c30f4b9a25e40600d6993fc1069efa0689 /compiler/dex/quick/quick_compiler.cc | |
parent | 7eebd95bddc7c6866ba29010d28b4f8251b43242 (diff) | |
download | art-f9b87b1eece0e03578c4d1b627f1d5e8691a539a.zip art-f9b87b1eece0e03578c4d1b627f1d5e8691a539a.tar.gz art-f9b87b1eece0e03578c4d1b627f1d5e8691a539a.tar.bz2 |
Revert "Revert "ART: Prepare for ELF64.""
Fix was commited in "Fix frame size issue with 64-bit"
This reverts commit 7eebd95bddc7c6866ba29010d28b4f8251b43242.
Change-Id: I799b7fcab14ae24471d2f9d6d3a5e5cedd4aa7b8
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 49c16cb..2c5f79c 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 { |