diff options
| author | Akira Hatanaka <ahatanaka@mips.com> | 2012-06-21 20:23:32 +0000 |
|---|---|---|
| committer | Akira Hatanaka <ahatanaka@mips.com> | 2012-06-21 20:23:32 +0000 |
| commit | fcf52c8304e86fa9465cfd6675ff737fc411e114 (patch) | |
| tree | c5baec26500990431a610657d5e74d8949975acd /llvm | |
| parent | a86b0f20dd43e5a06640fabb37c0fd25b5a44d67 (diff) | |
| download | bcm5719-llvm-fcf52c8304e86fa9465cfd6675ff737fc411e114.tar.gz bcm5719-llvm-fcf52c8304e86fa9465cfd6675ff737fc411e114.zip | |
Add Mips to the list of target architectures for the MCJIT tests.
Patch by Reed Kotler.
llvm-svn: 158933
Diffstat (limited to 'llvm')
| -rw-r--r-- | llvm/test/ExecutionEngine/MCJIT/lit.local.cfg | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/test/ExecutionEngine/MCJIT/lit.local.cfg b/llvm/test/ExecutionEngine/MCJIT/lit.local.cfg index ba81a449463..2980ce70811 100644 --- a/llvm/test/ExecutionEngine/MCJIT/lit.local.cfg +++ b/llvm/test/ExecutionEngine/MCJIT/lit.local.cfg @@ -8,12 +8,12 @@ def getRoot(config): root = getRoot(config) targets = set(root.targets_to_build.split()) -if ('X86' in targets) | ('ARM' in targets): +if ('X86' in targets) | ('ARM' in targets) | ('Mips' in targets): config.unsupported = False else: config.unsupported = True -if root.host_arch not in ['x86', 'x86_64', 'ARM']: +if root.host_arch not in ['x86', 'x86_64', 'ARM', 'Mips']: config.unsupported = True if root.host_os in ['Win32', 'Cygwin', 'MingW', 'Windows', 'Darwin']: |

