Revert "[Mips] Fix createMipsRelocationHandler specialization"

The buildbot reported build failures for clang.

llvm-svn: 227179
This commit is contained in:
Denis Protivensky 2015-01-27 08:22:07 +00:00
parent ad6bedb43e
commit 60f12026fb
1 changed files with 2 additions and 8 deletions

View File

@ -373,22 +373,16 @@ std::error_code RelocationHandler<ELFT>::applyRelocation(
} // end anon namespace
namespace lld {
namespace elf {
template <>
std::unique_ptr<TargetRelocationHandler>
createMipsRelocationHandler<Mips32ELType>(MipsLinkingContext &ctx) {
lld::elf::createMipsRelocationHandler<Mips32ELType>(MipsLinkingContext &ctx) {
return std::unique_ptr<TargetRelocationHandler>(
new RelocationHandler<Mips32ELType>(ctx));
}
template <>
std::unique_ptr<TargetRelocationHandler>
createMipsRelocationHandler<Mips64ELType>(MipsLinkingContext &ctx) {
lld::elf::createMipsRelocationHandler<Mips64ELType>(MipsLinkingContext &ctx) {
return std::unique_ptr<TargetRelocationHandler>(
new RelocationHandler<Mips64ELType>(ctx));
}
} // elf
} // lld