[llvm-branch-commits] [llvm-branch] r168392 - /llvm/branches/release_32/test/ExecutionEngine/MCJIT/lit.local.cfg

Andrew Kaylor andrew.kaylor at intel.com
Tue Nov 20 14:48:18 PST 2012


Author: akaylor
Date: Tue Nov 20 16:47:44 2012
New Revision: 168392

URL: http://llvm.org/viewvc/llvm-project?rev=168392&view=rev
Log:
Merge in r168364 to disable MCJIT execution engine tests on ppc32 (which doesn't currently support MCJIT).

Modified:
    llvm/branches/release_32/test/ExecutionEngine/MCJIT/lit.local.cfg

Modified: llvm/branches/release_32/test/ExecutionEngine/MCJIT/lit.local.cfg
URL: http://llvm.org/viewvc/llvm-project/llvm/branches/release_32/test/ExecutionEngine/MCJIT/lit.local.cfg?rev=168392&r1=168391&r2=168392&view=diff
==============================================================================
--- llvm/branches/release_32/test/ExecutionEngine/MCJIT/lit.local.cfg (original)
+++ llvm/branches/release_32/test/ExecutionEngine/MCJIT/lit.local.cfg Tue Nov 20 16:47:44 2012
@@ -19,3 +19,6 @@
 
 if root.host_os in ['Darwin']:
     config.unsupported = True
+
+if 'powerpc' in root.target_triple and not 'powerpc64' in root.target_triple:
+    config.unsupported = True





More information about the llvm-branch-commits mailing list