diff options
author | Petar Jovanovic <petar.jovanovic@imgtec.com> | 2015-05-28 13:48:41 +0000 |
---|---|---|
committer | Petar Jovanovic <petar.jovanovic@imgtec.com> | 2015-05-28 13:48:41 +0000 |
commit | 9720283e994c6c3187cff8724bf0c2ed59d04f8c (patch) | |
tree | 9044d2123f55226de7b7b33e074b8807ff3aea22 /llvm/unittests/ExecutionEngine/MCJIT/MCJITCAPITest.cpp | |
parent | fb7d5b8384a58fcf59518273e8aeade078acd44b (diff) | |
download | bcm5719-llvm-9720283e994c6c3187cff8724bf0c2ed59d04f8c.tar.gz bcm5719-llvm-9720283e994c6c3187cff8724bf0c2ed59d04f8c.zip |
[Mips64] Add support for MCJIT for MIPS64r2 and MIPS64r6
Add support for resolving MIPS64r2 and MIPS64r6 relocations in MCJIT.
Patch by Vladimir Radosavljevic.
Differential Revision: http://reviews.llvm.org/D9667
llvm-svn: 238424
Diffstat (limited to 'llvm/unittests/ExecutionEngine/MCJIT/MCJITCAPITest.cpp')
-rw-r--r-- | llvm/unittests/ExecutionEngine/MCJIT/MCJITCAPITest.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/llvm/unittests/ExecutionEngine/MCJIT/MCJITCAPITest.cpp b/llvm/unittests/ExecutionEngine/MCJIT/MCJITCAPITest.cpp index a7c9ae02b38..c7d4dd757cf 100644 --- a/llvm/unittests/ExecutionEngine/MCJIT/MCJITCAPITest.cpp +++ b/llvm/unittests/ExecutionEngine/MCJIT/MCJITCAPITest.cpp @@ -127,6 +127,8 @@ protected: SupportedArchs.push_back(Triple::aarch64); SupportedArchs.push_back(Triple::arm); SupportedArchs.push_back(Triple::mips); + SupportedArchs.push_back(Triple::mips64); + SupportedArchs.push_back(Triple::mips64el); SupportedArchs.push_back(Triple::x86); SupportedArchs.push_back(Triple::x86_64); |