diff options
Diffstat (limited to 'ELF/OutputSections.cpp')
-rw-r--r-- | ELF/OutputSections.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ELF/OutputSections.cpp b/ELF/OutputSections.cpp index 008871fd3889..6f04a04be8d0 100644 --- a/ELF/OutputSections.cpp +++ b/ELF/OutputSections.cpp @@ -41,6 +41,9 @@ OutputSection *Out::PreinitArray; OutputSection *Out::InitArray; OutputSection *Out::FiniArray; +std::vector<OutputSection *> elf::OutputSections; +std::vector<OutputSectionCommand *> elf::OutputSectionCommands; + uint32_t OutputSection::getPhdrFlags() const { uint32_t Ret = PF_R; if (Flags & SHF_WRITE) |