1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 03:23:01 +02:00
llvm-mirror/test/CodeGen/ARM64/lit.local.cfg
NAKAMURA Takumi 735b5fcf3b Suppress llvm/test/CodeGen/ARM64 for targeting pecoff. ARM64 is unaware of that.
FIXME: Could we support them?
llvm-svn: 205126
2014-03-30 05:01:17 +00:00

12 lines
290 B
INI

import re
config.suffixes = ['.ll', '.c', '.cpp']
targets = set(config.root.targets_to_build.split())
if not 'ARM64' in targets:
config.unsupported = True
# For now we don't test arm64-win32.
if re.search(r'cygwin|mingw32|win32', config.target_triple):
config.unsupported = True