[llvm] r184461 - [mips] Remove Triple:mips from SupportedArchs in MCJIT unittests
Akira Hatanaka
ahatanaka at mips.com
Thu Jun 20 13:33:06 PDT 2013
Author: ahatanak
Date: Thu Jun 20 15:33:06 2013
New Revision: 184461
URL: http://llvm.org/viewvc/llvm-project?rev=184461&view=rev
Log:
[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.
Modified:
llvm/trunk/unittests/ExecutionEngine/MCJIT/MCJITTestBase.h
Modified: llvm/trunk/unittests/ExecutionEngine/MCJIT/MCJITTestBase.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/unittests/ExecutionEngine/MCJIT/MCJITTestBase.h?rev=184461&r1=184460&r2=184461&view=diff
==============================================================================
--- llvm/trunk/unittests/ExecutionEngine/MCJIT/MCJITTestBase.h (original)
+++ llvm/trunk/unittests/ExecutionEngine/MCJIT/MCJITTestBase.h Thu Jun 20 15:33:06 2013
@@ -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);
More information about the llvm-commits
mailing list