diff options
author | Akira Hatanaka <ahatanaka@mips.com> | 2013-06-20 20:33:06 +0000 |
---|---|---|
committer | Akira Hatanaka <ahatanaka@mips.com> | 2013-06-20 20:33:06 +0000 |
commit | deda39dbdf2a8b07940183e5f3ed9ea89e2ae053 (patch) | |
tree | a5ec0ba8d4c04e18506a59ef54841f18fe7785b2 /unittests/ExecutionEngine | |
parent | f9f44f3d5ad391e5b17916b4198e442d1a64a0b1 (diff) | |
download | external_llvm-deda39dbdf2a8b07940183e5f3ed9ea89e2ae053.zip external_llvm-deda39dbdf2a8b07940183e5f3ed9ea89e2ae053.tar.gz external_llvm-deda39dbdf2a8b07940183e5f3ed9ea89e2ae053.tar.bz2 |
[mips] Remove Triple:mips from SupportedArchs in MCJIT unittests
MIPS does not handle multiple relocations correctly, so two tests from the
unittests are expected to fail. These are:
- MCJITTest.return_global and
- MCJITTest.multiple_functions.
Until the multiple relocations are fixed, XFAIL the MCJIT unittests for
MIPS. This issue is tracked as Bug 16250.
Patch by Petar Jovanovic.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@184461 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'unittests/ExecutionEngine')
-rw-r--r-- | unittests/ExecutionEngine/MCJIT/MCJITTestBase.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/unittests/ExecutionEngine/MCJIT/MCJITTestBase.h b/unittests/ExecutionEngine/MCJIT/MCJITTestBase.h index 95a5c8b..8edc12a 100644 --- a/unittests/ExecutionEngine/MCJIT/MCJITTestBase.h +++ b/unittests/ExecutionEngine/MCJIT/MCJITTestBase.h @@ -46,7 +46,6 @@ protected: // kept in sync. SupportedArchs.push_back(Triple::aarch64); SupportedArchs.push_back(Triple::arm); - SupportedArchs.push_back(Triple::mips); SupportedArchs.push_back(Triple::x86); SupportedArchs.push_back(Triple::x86_64); |