diff options
Diffstat (limited to 'lld/ELF/InputSection.h')
-rw-r--r-- | lld/ELF/InputSection.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lld/ELF/InputSection.h b/lld/ELF/InputSection.h index d7c953262a4..3c42af7db7b 100644 --- a/lld/ELF/InputSection.h +++ b/lld/ELF/InputSection.h @@ -142,6 +142,10 @@ public: // cases this points one level up. SectionBase *parent = nullptr; + // The next member in the section group if this section is in a group. This is + // used by --gc-sections. + InputSectionBase *nextInSectionGroup = nullptr; + template <class ELFT> ArrayRef<typename ELFT::Rel> rels() const { assert(!areRelocsRela); return llvm::makeArrayRef( |