summaryrefslogtreecommitdiffstats
path: root/dex2oat
diff options
context:
space:
mode:
authorDmitry Petrochenko <dmitry.petrochenko@intel.com>2014-06-06 15:18:14 +0700
committerDmitry Petrochenko <dmitry.petrochenko@intel.com>2014-06-13 17:07:56 +0000
commit136aaee2993a4a5fd93eb9371584161c6d1c7445 (patch)
tree43a13a8deead9640390b2e3b37d4063cfeb0530c /dex2oat
parent3316ff53b8745707a492d0442a94174abc679ece (diff)
downloadart-136aaee2993a4a5fd93eb9371584161c6d1c7445.zip
art-136aaee2993a4a5fd93eb9371584161c6d1c7445.tar.gz
art-136aaee2993a4a5fd93eb9371584161c6d1c7445.tar.bz2
x86_64: Enable compilation
This patch enables compilation of all methods for x86_64 except image. Change-Id: Ie210809f2595cc25da688a4ad0363c258bcf8233 Signed-off-by: Dmitry Petrochenko <dmitry.petrochenko@intel.com>
Diffstat (limited to 'dex2oat')
-rw-r--r--dex2oat/dex2oat.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/dex2oat/dex2oat.cc b/dex2oat/dex2oat.cc
index 35149cf..7e0a106 100644
--- a/dex2oat/dex2oat.cc
+++ b/dex2oat/dex2oat.cc
@@ -1084,7 +1084,7 @@ static int dex2oat(int argc, char** argv) {
}
if (compiler_filter_string == nullptr) {
- if (instruction_set == kX86_64 || instruction_set == kArm64 || instruction_set == kMips) {
+ if ((instruction_set == kX86_64 && image) || instruction_set == kArm64 || instruction_set == kMips) {
// TODO: implement/fix compilers for these architectures.
compiler_filter_string = "interpret-only";
} else if (image) {