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 | f47db38a01987ddf64eb35d93a6855523f80a4dc (patch) | |
tree | 6fce1cd7021eb55e8038a868fca6bc7bac4750be /llvm/unittests/ExecutionEngine | |
parent | 1941b007a254b0aace1d8e4b2c01a84ae3cd9cbe (diff) | |
download | bcm5719-llvm-f47db38a01987ddf64eb35d93a6855523f80a4dc.tar.gz bcm5719-llvm-f47db38a01987ddf64eb35d93a6855523f80a4dc.zip |
[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.
llvm-svn: 184461
Diffstat (limited to 'llvm/unittests/ExecutionEngine')
-rw-r--r-- | llvm/unittests/ExecutionEngine/MCJIT/MCJITTestBase.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/llvm/unittests/ExecutionEngine/MCJIT/MCJITTestBase.h b/llvm/unittests/ExecutionEngine/MCJIT/MCJITTestBase.h index 95a5c8bff8e..8edc12a14f8 100644 --- a/llvm/unittests/ExecutionEngine/MCJIT/MCJITTestBase.h +++ b/llvm/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); |