[llvm-commits] [llvm] r158933 - /llvm/trunk/test/ExecutionEngine/MCJIT/lit.local.cfg

Akira Hatanaka ahatanaka at mips.com
Thu Jun 21 13:23:32 PDT 2012


Author: ahatanak
Date: Thu Jun 21 15:23:32 2012
New Revision: 158933

URL: http://llvm.org/viewvc/llvm-project?rev=158933&view=rev
Log:
Add Mips to the list of target architectures for the MCJIT tests.
 
Patch by Reed Kotler.

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=158933&r1=158932&r2=158933&view=diff
==============================================================================
--- llvm/trunk/test/ExecutionEngine/MCJIT/lit.local.cfg (original)
+++ llvm/trunk/test/ExecutionEngine/MCJIT/lit.local.cfg Thu Jun 21 15:23:32 2012
@@ -8,12 +8,12 @@
 root = getRoot(config)
 
 targets = set(root.targets_to_build.split())
-if ('X86' in targets) | ('ARM' in targets):
+if ('X86' in targets) | ('ARM' in targets) | ('Mips' in targets):
     config.unsupported = False
 else:
     config.unsupported = True
 
-if root.host_arch not in ['x86', 'x86_64', 'ARM']:
+if root.host_arch not in ['x86', 'x86_64', 'ARM', 'Mips']:
     config.unsupported = True
 
 if root.host_os in ['Win32', 'Cygwin', 'MingW', 'Windows', 'Darwin']:





More information about the llvm-commits mailing list