forked from OSchip/llvm-project
A couple of tests, in llvm/test/Transforms/*/xcore, are XCore-specific. They should be excluded when XCore is not built.
llvm-svn: 190938
This commit is contained in:
parent
0b642ec13d
commit
69ae1b9aa2
|
@ -0,0 +1,3 @@
|
|||
targets = set(config.root.targets_to_build.split())
|
||||
if not 'XCore' in targets:
|
||||
config.unsupported = True
|
|
@ -0,0 +1,3 @@
|
|||
targets = set(config.root.targets_to_build.split())
|
||||
if not 'XCore' in targets:
|
||||
config.unsupported = True
|
Loading…
Reference in New Issue