Use AArch64 instead of now removed ARM64 in test configs

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@210229 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Alexey Samsonov 2014-06-05 00:25:30 +00:00
parent d4af856cfb
commit a66075fdd1
3 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
targets = set(config.root.targets_to_build.split())
if not 'ARM64' in targets:
if not 'AArch64' in targets:
config.unsupported = True

View File

@ -1,4 +1,4 @@
if config.root.host_arch in ['PowerPC', 'AArch64', 'ARM64', 'SystemZ']:
if config.root.host_arch in ['PowerPC', 'AArch64', 'SystemZ']:
config.unsupported = True
# CMake and autoconf diverge in naming or host_arch

View File

@ -1,6 +1,6 @@
config.suffixes = ['.ll']
targets = set(config.root.targets_to_build.split())
if not 'ARM64' in targets:
if not 'AArch64' in targets:
config.unsupported = True