diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2014-01-10 10:38:46 +0000 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2014-01-10 10:38:46 +0000 |
commit | 566080cc807c44b450ac6ce5c71b87a7db4074ec (patch) | |
tree | 362947ee2ce9d094821de1fb3c76cb241c9ff3ea /llvm/test/ExecutionEngine | |
parent | d7fd6d99ec6886c7b7d1e2780eb6e9cf39f5719f (diff) | |
download | bcm5719-llvm-566080cc807c44b450ac6ce5c71b87a7db4074ec.tar.gz bcm5719-llvm-566080cc807c44b450ac6ce5c71b87a7db4074ec.zip |
llvm/test/ExecutionEngine/MCJIT/lit.local.cfg: Add "AMD64" in the host_arch list.
FIXME: We should not take CMake's ${CMAKE_SYSTEM_PROCESSOR}...
llvm-svn: 198930
Diffstat (limited to 'llvm/test/ExecutionEngine')
-rw-r--r-- | llvm/test/ExecutionEngine/MCJIT/lit.local.cfg | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/ExecutionEngine/MCJIT/lit.local.cfg b/llvm/test/ExecutionEngine/MCJIT/lit.local.cfg index fdb36ee1d71..5dc749da24e 100644 --- a/llvm/test/ExecutionEngine/MCJIT/lit.local.cfg +++ b/llvm/test/ExecutionEngine/MCJIT/lit.local.cfg @@ -8,7 +8,7 @@ else: # FIXME: autoconf and cmake produce different arch names. We should normalize # them before getting here. -if root.host_arch not in ['i386', 'x86', 'x86_64', +if root.host_arch not in ['i386', 'x86', 'x86_64', 'AMD64', 'AArch64', 'ARM', 'Mips', 'PowerPC', 'ppc64', 'SystemZ']: config.unsupported = True |