summaryrefslogtreecommitdiff
path: root/compiler/compilers.cc
diff options
context:
space:
mode:
author Bill Buzbee <buzbee@android.com> 2014-05-07 15:17:09 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2014-05-07 15:17:10 +0000
commit052a647973b590c9d5007a2e16f313f4e32a70bd (patch)
treefb2e79844d15b80da9af520c2983921c79b55fd1 /compiler/compilers.cc
parent221b86d96f6e1971d24e3d6a283352c58cedbd32 (diff)
parent9e06c8cd4a2e1471754470e09aaab63c0795b4af (diff)
Merge "AArch64: Add fake arm64 backend, and disable it by method filter."
Diffstat (limited to 'compiler/compilers.cc')
-rw-r--r--compiler/compilers.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/compiler/compilers.cc b/compiler/compilers.cc
index 188ce6ff62..6bf0058196 100644
--- a/compiler/compilers.cc
+++ b/compiler/compilers.cc
@@ -101,6 +101,10 @@ Backend* QuickCompiler::GetCodeGenerator(CompilationUnit* cu, void* compilation_
case kThumb2:
mir_to_lir = ArmCodeGenerator(cu, cu->mir_graph.get(), &cu->arena);
break;
+ case kArm64:
+ // TODO(Arm64): replace the generator below with a proper one.
+ mir_to_lir = ArmCodeGenerator(cu, cu->mir_graph.get(), &cu->arena);
+ break;
case kMips:
mir_to_lir = MipsCodeGenerator(cu, cu->mir_graph.get(), &cu->arena);
break;