[llvm] r198930 - llvm/test/ExecutionEngine/MCJIT/lit.local.cfg: Add "AMD64" in the host_arch list.

NAKAMURA Takumi geek4civic at gmail.com
Fri Jan 10 02:38:46 PST 2014


Author: chapuni
Date: Fri Jan 10 04:38:46 2014
New Revision: 198930

URL: http://llvm.org/viewvc/llvm-project?rev=198930&view=rev
Log:
llvm/test/ExecutionEngine/MCJIT/lit.local.cfg: Add "AMD64" in the host_arch list.

FIXME: We should not take CMake's ${CMAKE_SYSTEM_PROCESSOR}...

Modified:
    llvm/trunk/test/ExecutionEngine/MCJIT/lit.local.cfg

Modified: llvm/trunk/test/ExecutionEngine/MCJIT/lit.local.cfg
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/ExecutionEngine/MCJIT/lit.local.cfg?rev=198930&r1=198929&r2=198930&view=diff
==============================================================================
--- llvm/trunk/test/ExecutionEngine/MCJIT/lit.local.cfg (original)
+++ llvm/trunk/test/ExecutionEngine/MCJIT/lit.local.cfg Fri Jan 10 04:38:46 2014
@@ -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
 





More information about the llvm-commits mailing list