[PATCH] D13167: [ELF2] Initial (very basic) support for AArch64

Ed Maste via llvm-commits llvm-commits at lists.llvm.org
Fri Sep 25 10:57:44 PDT 2015


emaste added a comment.

Excellent! Aside, the reference FreeBSD/arm64 platform where @davide ran the result is Cavium's ThunderX.


================
Comment at: ELF/SymbolTable.cpp:48-49
@@ -47,2 +47,4 @@
     return new ARMTargetInfo();
+  case EM_AARCH64:
+    return new AArch64TargetInfo();
   case EM_PPC64:
----------------
My usual comment, we ought to keep lists like this sorted in alphanumeric order. Perhaps just put EM_AARCH64 first in this commit and re-sort the rest later?


Repository:
  rL LLVM

http://reviews.llvm.org/D13167





More information about the llvm-commits mailing list