summaryrefslogtreecommitdiffstats
path: root/dex2oat
diff options
context:
space:
mode:
authorDmitry Petrochenko <dmitry.petrochenko@intel.com>2014-06-13 15:15:32 +0700
committerDmitry Petrochenko <dmitry.petrochenko@intel.com>2014-06-18 16:37:43 +0000
commit0c416fe40f675a3bff4d8cfb591d66fb69b73958 (patch)
tree1369214a82a7a67e7ef82f553a46c515be8e4294 /dex2oat
parent4b855675b7c77e265aa69a9134dd50cc21273095 (diff)
downloadart-0c416fe40f675a3bff4d8cfb591d66fb69b73958.zip
art-0c416fe40f675a3bff4d8cfb591d66fb69b73958.tar.gz
art-0c416fe40f675a3bff4d8cfb591d66fb69b73958.tar.bz2
x86_64: Enable core.oat/boot.oat compilation
This patch enabled compilation of image. Change-Id: Idacce4a3898964d3a05762925dba236d7254a254 Signed-off-by: Dmitry Petrochenko <dmitry.petrochenko@intel.com>
Diffstat (limited to 'dex2oat')
-rw-r--r--dex2oat/dex2oat.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/dex2oat/dex2oat.cc b/dex2oat/dex2oat.cc
index c3f2082..7ffab69 100644
--- a/dex2oat/dex2oat.cc
+++ b/dex2oat/dex2oat.cc
@@ -1093,8 +1093,7 @@ static int dex2oat(int argc, char** argv) {
}
if (compiler_filter_string == nullptr) {
- if ((instruction_set == kX86_64 && image) ||
- instruction_set == kArm64 ||
+ if (instruction_set == kArm64 ||
instruction_set == kMips) {
// TODO: implement/fix compilers for these architectures.
compiler_filter_string = "interpret-only";