mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-23 04:28:30 +00: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. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@207530 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
4551e311c6
commit
e26c8c2d82
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user