[lld] r295932 - Add another missing instantiation.
Rafael Espindola via llvm-commits
llvm-commits at lists.llvm.org
Wed Feb 22 19:38:15 PST 2017
Author: rafael
Date: Wed Feb 22 21:38:14 2017
New Revision: 295932
URL: http://llvm.org/viewvc/llvm-project?rev=295932&view=rev
Log:
Add another missing instantiation.
Modified:
lld/trunk/ELF/InputSection.cpp
Modified: lld/trunk/ELF/InputSection.cpp
URL: http://llvm.org/viewvc/llvm-project/lld/trunk/ELF/InputSection.cpp?rev=295932&r1=295931&r2=295932&view=diff
==============================================================================
--- lld/trunk/ELF/InputSection.cpp (original)
+++ lld/trunk/ELF/InputSection.cpp Wed Feb 22 21:38:14 2017
@@ -819,6 +819,11 @@ InputSectionBase::getOffset(const Define
template uint64_t
InputSectionBase::getOffset(const DefinedRegular<ELF64BE> &Sym) const;
+template uint64_t InputSectionBase::getOffset<ELF32LE>(uint64_t Offset) const;
+template uint64_t InputSectionBase::getOffset<ELF32BE>(uint64_t Offset) const;
+template uint64_t InputSectionBase::getOffset<ELF64LE>(uint64_t Offset) const;
+template uint64_t InputSectionBase::getOffset<ELF64BE>(uint64_t Offset) const;
+
template size_t InputSectionBase::getSize<ELF32LE>() const;
template size_t InputSectionBase::getSize<ELF32BE>() const;
template size_t InputSectionBase::getSize<ELF64LE>() const;
More information about the llvm-commits
mailing list