summaryrefslogtreecommitdiff
path: root/test/ExecutionEngine/MCJIT/lit.local.cfg
diff options
context:
space:
mode:
authorUlrich Weigand <ulrich.weigand@de.ibm.com>2013-05-06 16:21:50 +0000
committerUlrich Weigand <ulrich.weigand@de.ibm.com>2013-05-06 16:21:50 +0000
commit7207285e65730c0ce488ca2ddf86dee27d66e57a (patch)
tree112464875db3728ffce2a2be2f14daa3f1eada50 /test/ExecutionEngine/MCJIT/lit.local.cfg
parent097b88fff6c091e3ce314d1b5fe89ed3e691b261 (diff)
downloadllvm-7207285e65730c0ce488ca2ddf86dee27d66e57a.tar.gz
llvm-7207285e65730c0ce488ca2ddf86dee27d66e57a.tar.bz2
llvm-7207285e65730c0ce488ca2ddf86dee27d66e57a.tar.xz
[SystemZ] Set up JIT/MCJIT test cases
This patch adds the necessary configuration bits and #ifdef's to set up the JIT/MCJIT test cases for SystemZ. Like other recent targets, we do fully support MCJIT, but do not support the old JIT at all. Set up the lit config files accordingly, and disable old-JIT unit tests. Patch by Richard Sandiford. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@181207 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/ExecutionEngine/MCJIT/lit.local.cfg')
-rw-r--r--test/ExecutionEngine/MCJIT/lit.local.cfg4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/ExecutionEngine/MCJIT/lit.local.cfg b/test/ExecutionEngine/MCJIT/lit.local.cfg
index 2dbc222bba..30ed4e87e6 100644
--- a/test/ExecutionEngine/MCJIT/lit.local.cfg
+++ b/test/ExecutionEngine/MCJIT/lit.local.cfg
@@ -9,13 +9,13 @@ root = getRoot(config)
targets = set(root.targets_to_build.split())
if ('X86' in targets) | ('AArch64' in targets) | ('ARM' in targets) | \
- ('Mips' in targets) | ('PowerPC' in targets):
+ ('Mips' in targets) | ('PowerPC' in targets) | ('SystemZ' in targets):
config.unsupported = False
else:
config.unsupported = True
if root.host_arch not in ['i386', 'x86', 'x86_64',
- 'AArch64', 'ARM', 'Mips', 'PowerPC']:
+ 'AArch64', 'ARM', 'Mips', 'PowerPC', 'SystemZ']:
config.unsupported = True
if 'i386-apple-darwin' in root.target_triple: