diff options
Diffstat (limited to 'lld/ELF/DWARF.h')
-rw-r--r-- | lld/ELF/DWARF.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lld/ELF/DWARF.h b/lld/ELF/DWARF.h index 9f5e477201b..51ec9092f17 100644 --- a/lld/ELF/DWARF.h +++ b/lld/ELF/DWARF.h @@ -40,6 +40,10 @@ public: return rnglistsSection; } + const llvm::DWARFSection &getStrOffsetsSection() const override { + return strOffsetsSection; + } + const llvm::DWARFSection &getLineSection() const override { return lineSection; } @@ -79,6 +83,7 @@ private: LLDDWARFSection infoSection; LLDDWARFSection rangesSection; LLDDWARFSection rnglistsSection; + LLDDWARFSection strOffsetsSection; LLDDWARFSection lineSection; LLDDWARFSection addrSection; StringRef abbrevSection; |