summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2017-02-23 03:38:14 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2017-02-23 03:38:14 +0000
commitc8d0c7a0e3842bc0223aa3e0a3cb21f0fcdb999b (patch)
tree44dc9544cf9bec4fdd47566320bc5a37fb01549e
parentbcaaf96674ce687fe4736bf87a8d91b91da75fd6 (diff)
downloadbcm5719-llvm-c8d0c7a0e3842bc0223aa3e0a3cb21f0fcdb999b.tar.gz
bcm5719-llvm-c8d0c7a0e3842bc0223aa3e0a3cb21f0fcdb999b.zip
Add another missing instantiation.
llvm-svn: 295932
-rw-r--r--lld/ELF/InputSection.cpp5
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;
OpenPOWER on IntegriCloud