diff options
author | Tim Northover <Tim.Northover@arm.com> | 2013-05-04 20:14:22 +0000 |
---|---|---|
committer | Tim Northover <Tim.Northover@arm.com> | 2013-05-04 20:14:22 +0000 |
commit | 7428539a1c3c4bd70961cc3e5269d018a813b971 (patch) | |
tree | 22533d7a174dbcd148152834bf32f6258a756500 /test/ExecutionEngine | |
parent | d52eaae157e661f280d0a71aabc060602ffc4424 (diff) | |
download | external_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 'test/ExecutionEngine')
-rw-r--r-- | test/ExecutionEngine/MCJIT/lit.local.cfg | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/test/ExecutionEngine/MCJIT/lit.local.cfg b/test/ExecutionEngine/MCJIT/lit.local.cfg index 3630286..2dbc222 100644 --- a/test/ExecutionEngine/MCJIT/lit.local.cfg +++ b/test/ExecutionEngine/MCJIT/lit.local.cfg @@ -8,13 +8,14 @@ def getRoot(config): root = getRoot(config) targets = set(root.targets_to_build.split()) -if ('X86' in targets) | ('ARM' in targets) | ('Mips' in targets) | \ - ('PowerPC' in targets): +if ('X86' in targets) | ('AArch64' in targets) | ('ARM' in targets) | \ + ('Mips' in targets) | ('PowerPC' in targets): config.unsupported = False else: config.unsupported = True -if root.host_arch not in ['i386', 'x86', 'x86_64', 'ARM', 'Mips', 'PowerPC']: +if root.host_arch not in ['i386', 'x86', 'x86_64', + 'AArch64', 'ARM', 'Mips', 'PowerPC']: config.unsupported = True if 'i386-apple-darwin' in root.target_triple: |