diff options
| author | 2014-05-16 17:31:55 +0000 | |
|---|---|---|
| committer | 2014-05-16 17:31:56 +0000 | |
| commit | 1e97c4a4ab9f17d1394b952882d59d894b1e3c74 (patch) | |
| tree | 1942cbd3407f75e81e21200f56211aa8ed3bb767 /compiler/compilers.cc | |
| parent | c001b0952513690216f9a14153a839d569a91538 (diff) | |
| parent | 9ee801f5308aa3c62ae3bedae2658612762ffb91 (diff) | |
Merge "Add x86_64 code generation support"
Diffstat (limited to 'compiler/compilers.cc')
| -rw-r--r-- | compiler/compilers.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/compilers.cc b/compiler/compilers.cc index 79a85db79a..76838d701b 100644 --- a/compiler/compilers.cc +++ b/compiler/compilers.cc @@ -111,7 +111,7 @@ Backend* QuickCompiler::GetCodeGenerator(CompilationUnit* cu, void* compilation_ mir_to_lir = X86CodeGenerator(cu, cu->mir_graph.get(), &cu->arena); break; case kX86_64: - mir_to_lir = X86CodeGenerator(cu, cu->mir_graph.get(), &cu->arena); + mir_to_lir = X86_64CodeGenerator(cu, cu->mir_graph.get(), &cu->arena); break; default: LOG(FATAL) << "Unexpected instruction set: " << cu->instruction_set; |