mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-26 04:32:44 +01:00
c0920bb63a
Disable old JIT tests on PowerPC. llvm-svn: 168316
13 lines
234 B
INI
13 lines
234 B
INI
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
|
|
|