1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-22 18:54:02 +01:00

mark the old jit tests as unsupported for powerpc64 (for cmake)

mark the old JIT tests as unsupported for powerpc64 - CMake style.
This follows the style used for hexagon/arm64/aarch64.
The equivalent tests still run under the supported MCJIT/*

llvm-svn: 211111
This commit is contained in:
Will Schmidt 2014-06-17 17:04:42 +00:00
parent a529beed9c
commit 5832e5b8ca

View File

@ -2,6 +2,9 @@ if config.root.host_arch in ['PowerPC', 'AArch64', 'SystemZ']:
config.unsupported = True
# CMake and autoconf diverge in naming or host_arch
if 'powerpc64' in config.root.target_triple:
config.unsupported = True
if 'aarch64' in config.root.target_triple \
or 'arm64' in config.root.target_triple:
config.unsupported = True