summaryrefslogtreecommitdiff
path: root/compiler/dex/quick/codegen_util.cc
diff options
context:
space:
mode:
author Dmitry Petrochenko <dmitry.petrochenko@intel.com> 2014-04-02 17:27:59 +0700
committer Dmitry Petrochenko <dmitry.petrochenko@intel.com> 2014-04-03 13:06:55 +0700
commit6a58cb16d803c9a7b3a75ccac8be19dd9d4e520d (patch)
treec142777f40178fd9b9090cd7316be694befb3f21 /compiler/dex/quick/codegen_util.cc
parent8549cf9d83688f7decbbea2a8de761ce29e95f3c (diff)
art: Handle x86_64 architecture equal to x86
This patch forces FE/ME to treat x86_64 as x86 exactly. The x86_64 logic will be revised later when assembly will be ready. Change-Id: I4a92477a6eeaa9a11fd710d35c602d8d6f88cbb6 Signed-off-by: Dmitry Petrochenko <dmitry.petrochenko@intel.com>
Diffstat (limited to 'compiler/dex/quick/codegen_util.cc')
-rw-r--r--compiler/dex/quick/codegen_util.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler/dex/quick/codegen_util.cc b/compiler/dex/quick/codegen_util.cc
index 4c6c7a45b4..6e6b8f0a30 100644
--- a/compiler/dex/quick/codegen_util.cc
+++ b/compiler/dex/quick/codegen_util.cc
@@ -480,6 +480,7 @@ void Mir2Lir::InstallSwitchTables() {
bx_offset = tab_rec->anchor->offset + 4;
break;
case kX86:
+ case kX86_64:
bx_offset = 0;
break;
case kMips: