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

[ARM64] Disable regression tests for the old JIT.

Since the ARM64 backend doesn't implement support for the old JIT those tests are failing when the regression tests are run on an AArch64 host.

llvm-svn: 207530
This commit is contained in:
Tilmann Scheller 2014-04-29 15:02:40 +00:00
parent 26318df9b5
commit d80a396b38

View File

@ -1,9 +1,10 @@
if config.root.host_arch in ['PowerPC', 'AArch64', 'SystemZ']:
if config.root.host_arch in ['PowerPC', 'AArch64', 'ARM64', 'SystemZ']:
config.unsupported = True
# CMake and autoconf diverge in naming or host_arch
if 'aarch64' 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
if 'hexagon' in config.root.target_triple:
config.unsupported = True