mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 03:33:20 +01:00
d80a396b38
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
15 lines
508 B
INI
15 lines
508 B
INI
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 \
|
|
or 'arm64' in config.root.target_triple:
|
|
config.unsupported = True
|
|
|
|
if 'hexagon' in config.root.target_triple:
|
|
config.unsupported = True
|
|
|
|
# ExecutionEngine tests are not expected to pass in a cross-compilation setup.
|
|
if 'native' not in config.available_features:
|
|
config.unsupported = True
|