diff options
Diffstat (limited to 'lld/ELF/InputSection.h')
-rw-r--r-- | lld/ELF/InputSection.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lld/ELF/InputSection.h b/lld/ELF/InputSection.h index b51fa15a507..19533e73e3e 100644 --- a/lld/ELF/InputSection.h +++ b/lld/ELF/InputSection.h @@ -331,6 +331,9 @@ private: // The list of all input sections. extern std::vector<InputSectionBase *> InputSections; +// Builds section order for handling --symbol-ordering-file. +template <class ELFT> llvm::DenseMap<SectionBase *, int> buildSectionOrder(); + } // namespace elf std::string toString(const elf::InputSectionBase *); |