Merge in r168316 so that the proper JIT tests are run on PPC.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/branches/release_32@168349 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Hal Finkel
2012-11-20 03:40:57 +00:00
parent dbf293f367
commit 16a8cf6eac
2 changed files with 14 additions and 2 deletions
+3 -2
View File
@@ -8,12 +8,13 @@ def getRoot(config):
root = getRoot(config)
targets = set(root.targets_to_build.split())
if ('X86' in targets) | ('ARM' in targets) | ('Mips' in targets):
if ('X86' in targets) | ('ARM' in targets) | ('Mips' in targets) | \
('PowerPC' in targets):
config.unsupported = False
else:
config.unsupported = True
if root.host_arch not in ['x86', 'x86_64', 'ARM', 'Mips']:
if root.host_arch not in ['x86', 'x86_64', 'ARM', 'Mips', 'PowerPC']:
config.unsupported = True
if root.host_os in ['Darwin']:
+11
View 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