aboutsummaryrefslogtreecommitdiffstats
path: root/test/lit.cfg
diff options
context:
space:
mode:
authorTim Northover <Tim.Northover@arm.com>2013-05-06 16:51:08 +0000
committerTim Northover <Tim.Northover@arm.com>2013-05-06 16:51:08 +0000
commit4c8850cd1c97eff659169967bb70b6e22c3ace27 (patch)
treef1441feda57b637be51be0db257e425791d175d7 /test/lit.cfg
parent9887cbed0597256b72742c5891a35f197e790e9d (diff)
downloadexternal_llvm-4c8850cd1c97eff659169967bb70b6e22c3ace27.zip
external_llvm-4c8850cd1c97eff659169967bb70b6e22c3ace27.tar.gz
external_llvm-4c8850cd1c97eff659169967bb70b6e22c3ace27.tar.bz2
AArch64: use MCJIT by default and enable related tests.
This just enables some testing I'd missed after implementing MCJIT support. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@181215 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/lit.cfg')
-rw-r--r--test/lit.cfg1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/lit.cfg b/test/lit.cfg
index d38775d..8272e97 100644
--- a/test/lit.cfg
+++ b/test/lit.cfg
@@ -160,6 +160,7 @@ config.substitutions.append( ('%lli_mcjit', lli_mcjit) )
# but simply want use the currently considered most reliable jit for platform
# FIXME: ppc32 is not ready for mcjit.
if 'arm' in config.target_triple \
+ or 'aarch64' in config.target_triple \
or 'powerpc64' in config.target_triple \
or 's390x' in config.target_triple:
defaultIsMCJIT = 'true'