aboutsummaryrefslogtreecommitdiff
path: root/lld/ELF/DWARF.h
diff options
context:
space:
mode:
Diffstat (limited to 'lld/ELF/DWARF.h')
-rw-r--r--lld/ELF/DWARF.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/lld/ELF/DWARF.h b/lld/ELF/DWARF.h
index 51ec9092f172..a12dae6e9960 100644
--- a/lld/ELF/DWARF.h
+++ b/lld/ELF/DWARF.h
@@ -32,6 +32,10 @@ public:
f(infoSection);
}
+ const llvm::DWARFSection &getLoclistsSection() const override {
+ return loclistsSection;
+ }
+
const llvm::DWARFSection &getRangesSection() const override {
return rangesSection;
}
@@ -52,11 +56,11 @@ public:
return addrSection;
}
- const llvm::DWARFSection &getGnuPubnamesSection() const override {
+ const LLDDWARFSection &getGnuPubnamesSection() const override {
return gnuPubnamesSection;
}
- const llvm::DWARFSection &getGnuPubtypesSection() const override {
+ const LLDDWARFSection &getGnuPubtypesSection() const override {
return gnuPubtypesSection;
}
@@ -81,6 +85,7 @@ private:
LLDDWARFSection gnuPubnamesSection;
LLDDWARFSection gnuPubtypesSection;
LLDDWARFSection infoSection;
+ LLDDWARFSection loclistsSection;
LLDDWARFSection rangesSection;
LLDDWARFSection rnglistsSection;
LLDDWARFSection strOffsetsSection;