[llvm] r182235 - Disable remote MCJIT on pre-v6 ARM

Renato Golin renato.golin at linaro.org
Mon May 20 00:46:07 PDT 2013


Author: rengolin
Date: Mon May 20 02:46:06 2013
New Revision: 182235

URL: http://llvm.org/viewvc/llvm-project?rev=182235&view=rev
Log:
Disable remote MCJIT on pre-v6 ARM

Added:
    llvm/trunk/test/ExecutionEngine/MCJIT/remote/lit.local.cfg

Added: llvm/trunk/test/ExecutionEngine/MCJIT/remote/lit.local.cfg
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/ExecutionEngine/MCJIT/remote/lit.local.cfg?rev=182235&view=auto
==============================================================================
--- llvm/trunk/test/ExecutionEngine/MCJIT/remote/lit.local.cfg (added)
+++ llvm/trunk/test/ExecutionEngine/MCJIT/remote/lit.local.cfg Mon May 20 02:46:06 2013
@@ -0,0 +1,11 @@
+config.suffixes = ['.ll', '.c', '.cpp']
+
+def getRoot(config):
+    if not config.parent:
+        return config
+    return getRoot(config.parent)
+
+root = getRoot(config)
+
+if 'armv4' in root.target_triple or 'armv5' in root.target_triple:
+    config.unsupported = True





More information about the llvm-commits mailing list