diff options
| author | 2014-06-13 15:15:32 +0700 | |
|---|---|---|
| committer | 2014-06-18 16:37:43 +0000 | |
| commit | 0c416fe40f675a3bff4d8cfb591d66fb69b73958 (patch) | |
| tree | 1369214a82a7a67e7ef82f553a46c515be8e4294 | |
| parent | 4b855675b7c77e265aa69a9134dd50cc21273095 (diff) | |
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>
| -rw-r--r-- | dex2oat/dex2oat.cc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/dex2oat/dex2oat.cc b/dex2oat/dex2oat.cc index c3f20828cc..7ffab6977b 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"; |