diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2017-02-23 03:38:14 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2017-02-23 03:38:14 +0000 |
commit | c8d0c7a0e3842bc0223aa3e0a3cb21f0fcdb999b (patch) | |
tree | 44dc9544cf9bec4fdd47566320bc5a37fb01549e | |
parent | bcaaf96674ce687fe4736bf87a8d91b91da75fd6 (diff) | |
download | bcm5719-llvm-c8d0c7a0e3842bc0223aa3e0a3cb21f0fcdb999b.tar.gz bcm5719-llvm-c8d0c7a0e3842bc0223aa3e0a3cb21f0fcdb999b.zip |
Add another missing instantiation.
llvm-svn: 295932
-rw-r--r-- | lld/ELF/InputSection.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lld/ELF/InputSection.cpp b/lld/ELF/InputSection.cpp index 5ea1a6b1ac5..66405f1d2a5 100644 --- a/lld/ELF/InputSection.cpp +++ b/lld/ELF/InputSection.cpp @@ -819,6 +819,11 @@ InputSectionBase::getOffset(const DefinedRegular<ELF64LE> &Sym) const; 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; |