aboutsummaryrefslogtreecommitdiffstats
path: root/test/lit.cfg
diff options
context:
space:
mode:
authorUlrich Weigand <ulrich.weigand@de.ibm.com>2012-10-30 18:07:58 +0000
committerUlrich Weigand <ulrich.weigand@de.ibm.com>2012-10-30 18:07:58 +0000
commitc197a55019e9cf1a2403eaed5854d1091d63319c (patch)
tree4ff9deea9e28593786f1ee6723689d11356980ce /test/lit.cfg
parente0aae5b4f30ce283b7023daf3a41a6bd0e1e117e (diff)
downloadexternal_llvm-c197a55019e9cf1a2403eaed5854d1091d63319c.zip
external_llvm-c197a55019e9cf1a2403eaed5854d1091d63319c.tar.gz
external_llvm-c197a55019e9cf1a2403eaed5854d1091d63319c.tar.bz2
Set %defaultjit to use MCJIT for PowerPC targets.
Update Transforms/LICM/2003-12-11-SinkingToPHI.ll test to use %defaultjit as well. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@167031 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/lit.cfg')
-rw-r--r--test/lit.cfg3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/lit.cfg b/test/lit.cfg
index 7f26cdf..76b1827 100644
--- a/test/lit.cfg
+++ b/test/lit.cfg
@@ -149,7 +149,8 @@ config.substitutions.append( ('%mcjit_triple', mcjit_triple) )
# Provide a substition for those tests that need to run the jit to obtain data
# but simply want use the currently considered most reliable jit for platform
-if 'arm' in config.target_triple:
+if 'arm' in config.target_triple \
+ or 'powerpc' in config.target_triple:
defaultIsMCJIT = 'true'
else:
defaultIsMCJIT = 'false'