diff options
Diffstat (limited to 'llvm/test/tools/llvm-exegesis/X86/lit.local.cfg')
-rw-r--r-- | llvm/test/tools/llvm-exegesis/X86/lit.local.cfg | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/llvm/test/tools/llvm-exegesis/X86/lit.local.cfg b/llvm/test/tools/llvm-exegesis/X86/lit.local.cfg new file mode 100644 index 00000000000..1d6936cf26b --- /dev/null +++ b/llvm/test/tools/llvm-exegesis/X86/lit.local.cfg @@ -0,0 +1,7 @@ +# We need support for X86. +if not ('X86' in config.root.targets): + config.unsupported = True + +# And we need to be running on an X86 host. +if not ('x86_64' in config.root.host_triple): + config.unsupported = True |