diff options
author | Pavel Labath <pavel@labath.sk> | 2019-11-26 11:00:23 +0100 |
---|---|---|
committer | Pavel Labath <pavel@labath.sk> | 2019-11-26 13:58:26 +0100 |
commit | 4023bd05fcb4f75c6a11d661f407f8e0896176e2 (patch) | |
tree | a13776ba291df193e408319b87620c14296b7025 /lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.cpp | |
parent | 30fc94be237f26d3127d8bbc872d9e3b82f03590 (diff) | |
download | bcm5719-llvm-4023bd05fcb4f75c6a11d661f407f8e0896176e2.tar.gz bcm5719-llvm-4023bd05fcb4f75c6a11d661f407f8e0896176e2.zip |
[lldb] Add boilerplate to recognize the .debug_rnglists.dwo section
Diffstat (limited to 'lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.cpp')
-rw-r--r-- | lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.cpp b/lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.cpp index 3f8502548fc..8eadaf1323d 100644 --- a/lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.cpp +++ b/lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.cpp @@ -1581,6 +1581,7 @@ static SectionType GetSectionTypeFromName(llvm::StringRef Name) { .Case("pubtypes", eSectionTypeDWARFDebugPubTypes) .Case("ranges", eSectionTypeDWARFDebugRanges) .Case("rnglists", eSectionTypeDWARFDebugRngLists) + .Case("rnglists.dwo", eSectionTypeDWARFDebugRngListsDwo) .Case("str", eSectionTypeDWARFDebugStr) .Case("str.dwo", eSectionTypeDWARFDebugStrDwo) .Case("str_offsets", eSectionTypeDWARFDebugStrOffsets) |