A couple of tests, in llvm/test/Transforms/*/xcore, are XCore-specific. They should be excluded when XCore is not built.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@190938 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
NAKAMURA Takumi 2013-09-18 13:56:16 +00:00
parent 8c03d6a9e8
commit fa7b1e24e5
2 changed files with 6 additions and 0 deletions

View File

@ -0,0 +1,3 @@
targets = set(config.root.targets_to_build.split())
if not 'XCore' in targets:
config.unsupported = True

View File

@ -0,0 +1,3 @@
targets = set(config.root.targets_to_build.split())
if not 'XCore' in targets:
config.unsupported = True