aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Target/AArch64/TargetInfo
diff options
context:
space:
mode:
authorTim Northover <Tim.Northover@arm.com>2013-05-04 20:14:22 +0000
committerTim Northover <Tim.Northover@arm.com>2013-05-04 20:14:22 +0000
commit7428539a1c3c4bd70961cc3e5269d018a813b971 (patch)
tree22533d7a174dbcd148152834bf32f6258a756500 /lib/Target/AArch64/TargetInfo
parentd52eaae157e661f280d0a71aabc060602ffc4424 (diff)
downloadexternal_llvm-7428539a1c3c4bd70961cc3e5269d018a813b971.zip
external_llvm-7428539a1c3c4bd70961cc3e5269d018a813b971.tar.gz
external_llvm-7428539a1c3c4bd70961cc3e5269d018a813b971.tar.bz2
AArch64: enable MCJIT and tests now that everything passes.
This removes dire warnings about AArch64 being unsupported and enables the tests when appropriate on this platform. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@181135 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/AArch64/TargetInfo')
-rw-r--r--lib/Target/AArch64/TargetInfo/AArch64TargetInfo.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/AArch64/TargetInfo/AArch64TargetInfo.cpp b/lib/Target/AArch64/TargetInfo/AArch64TargetInfo.cpp
index b8099cb..fc706a4 100644
--- a/lib/Target/AArch64/TargetInfo/AArch64TargetInfo.cpp
+++ b/lib/Target/AArch64/TargetInfo/AArch64TargetInfo.cpp
@@ -19,6 +19,6 @@ using namespace llvm;
Target llvm::TheAArch64Target;
extern "C" void LLVMInitializeAArch64TargetInfo() {
- RegisterTarget<Triple::aarch64>
+ RegisterTarget<Triple::aarch64, /*HasJIT=*/true>
X(TheAArch64Target, "aarch64", "AArch64");
}