Remove dead method.
[oota-llvm.git] / test / ExecutionEngine / lit.local.cfg
index 19eebc0ac7ac345747856190cdcccb57bf60eec6..f0343263dba6169956d737cd724bbd186c0090b7 100644 (file)
@@ -1 +1,12 @@
 config.suffixes = ['.ll', '.c', '.cpp']
+
+def getRoot(config):
+    if not config.parent:
+        return config
+    return getRoot(config.parent)
+
+root = getRoot(config)
+
+if root.host_arch in ['PowerPC']:
+    config.unsupported = True
+