summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lld/ELF/InputSection.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/lld/ELF/InputSection.cpp b/lld/ELF/InputSection.cpp
index 7fa59a7e781..5ea1a6b1ac5 100644
--- a/lld/ELF/InputSection.cpp
+++ b/lld/ELF/InputSection.cpp
@@ -818,3 +818,13 @@ template uint64_t
InputSectionBase::getOffset(const DefinedRegular<ELF64LE> &Sym) const;
template uint64_t
InputSectionBase::getOffset(const DefinedRegular<ELF64BE> &Sym) const;
+
+template size_t InputSectionBase::getSize<ELF32LE>() const;
+template size_t InputSectionBase::getSize<ELF32BE>() const;
+template size_t InputSectionBase::getSize<ELF64LE>() const;
+template size_t InputSectionBase::getSize<ELF64BE>() const;
+
+template elf::ObjectFile<ELF32LE> *InputSectionBase::getFile<ELF32LE>() const;
+template elf::ObjectFile<ELF32BE> *InputSectionBase::getFile<ELF32BE>() const;
+template elf::ObjectFile<ELF64LE> *InputSectionBase::getFile<ELF64LE>() const;
+template elf::ObjectFile<ELF64BE> *InputSectionBase::getFile<ELF64BE>() const;
OpenPOWER on IntegriCloud