diff options
| author | 2014-04-02 17:27:59 +0700 | |
|---|---|---|
| committer | 2014-04-03 13:06:55 +0700 | |
| commit | 6a58cb16d803c9a7b3a75ccac8be19dd9d4e520d (patch) | |
| tree | c142777f40178fd9b9090cd7316be694befb3f21 /compiler/optimizing/code_generator.cc | |
| parent | 8549cf9d83688f7decbbea2a8de761ce29e95f3c (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/optimizing/code_generator.cc')
| -rw-r--r-- | compiler/optimizing/code_generator.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/compiler/optimizing/code_generator.cc b/compiler/optimizing/code_generator.cc index b86665b9ee..2207fd761b 100644 --- a/compiler/optimizing/code_generator.cc +++ b/compiler/optimizing/code_generator.cc @@ -112,6 +112,9 @@ CodeGenerator* CodeGenerator::Create(ArenaAllocator* allocator, case kX86: { return new (allocator) x86::CodeGeneratorX86(graph); } + case kX86_64: { + return new (allocator) x86::CodeGeneratorX86(graph); + } default: return nullptr; } |