diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2016-01-22 21:49:07 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2016-01-22 21:49:07 +0000 |
commit | 25472ee9c2fa9fa77774721ee35880f79d4a8cf5 (patch) | |
tree | 198c96b9a72319ca573666cd5df1307370a000b3 | |
parent | 93bc576ec96d15001e46c8c282e1377694d934ab (diff) | |
download | bcm5719-llvm-25472ee9c2fa9fa77774721ee35880f79d4a8cf5.tar.gz bcm5719-llvm-25472ee9c2fa9fa77774721ee35880f79d4a8cf5.zip |
Remove unnecessary object:: prefix.
llvm-svn: 258563
-rw-r--r-- | lld/ELF/InputSection.cpp | 48 |
1 files changed, 24 insertions, 24 deletions
diff --git a/lld/ELF/InputSection.cpp b/lld/ELF/InputSection.cpp index c8fad312d45..20cc2479ebb 100644 --- a/lld/ELF/InputSection.cpp +++ b/lld/ELF/InputSection.cpp @@ -378,27 +378,27 @@ bool MipsReginfoInputSection<ELFT>::classof(const InputSectionBase<ELFT> *S) { return S->SectionKind == InputSectionBase<ELFT>::MipsReginfo; } -template class elf2::InputSectionBase<object::ELF32LE>; -template class elf2::InputSectionBase<object::ELF32BE>; -template class elf2::InputSectionBase<object::ELF64LE>; -template class elf2::InputSectionBase<object::ELF64BE>; - -template class elf2::InputSection<object::ELF32LE>; -template class elf2::InputSection<object::ELF32BE>; -template class elf2::InputSection<object::ELF64LE>; -template class elf2::InputSection<object::ELF64BE>; - -template class elf2::EHInputSection<object::ELF32LE>; -template class elf2::EHInputSection<object::ELF32BE>; -template class elf2::EHInputSection<object::ELF64LE>; -template class elf2::EHInputSection<object::ELF64BE>; - -template class elf2::MergeInputSection<object::ELF32LE>; -template class elf2::MergeInputSection<object::ELF32BE>; -template class elf2::MergeInputSection<object::ELF64LE>; -template class elf2::MergeInputSection<object::ELF64BE>; - -template class elf2::MipsReginfoInputSection<object::ELF32LE>; -template class elf2::MipsReginfoInputSection<object::ELF32BE>; -template class elf2::MipsReginfoInputSection<object::ELF64LE>; -template class elf2::MipsReginfoInputSection<object::ELF64BE>; +template class elf2::InputSectionBase<ELF32LE>; +template class elf2::InputSectionBase<ELF32BE>; +template class elf2::InputSectionBase<ELF64LE>; +template class elf2::InputSectionBase<ELF64BE>; + +template class elf2::InputSection<ELF32LE>; +template class elf2::InputSection<ELF32BE>; +template class elf2::InputSection<ELF64LE>; +template class elf2::InputSection<ELF64BE>; + +template class elf2::EHInputSection<ELF32LE>; +template class elf2::EHInputSection<ELF32BE>; +template class elf2::EHInputSection<ELF64LE>; +template class elf2::EHInputSection<ELF64BE>; + +template class elf2::MergeInputSection<ELF32LE>; +template class elf2::MergeInputSection<ELF32BE>; +template class elf2::MergeInputSection<ELF64LE>; +template class elf2::MergeInputSection<ELF64BE>; + +template class elf2::MipsReginfoInputSection<ELF32LE>; +template class elf2::MipsReginfoInputSection<ELF32BE>; +template class elf2::MipsReginfoInputSection<ELF64LE>; +template class elf2::MipsReginfoInputSection<ELF64BE>; |