Skip to content

Commit def17cd

Browse files
[lldb][AIX] Added support to load DW_ranges section (#142356)
This PR is in reference to porting LLDB on AIX. Link to discussions on llvm discourse and github: 1. https://discourse.llvm.org/t/port-lldb-to-ibm-aix/80640 2. #101657 The complete changes for porting are present in this draft PR: #102601 - [lldb] [AIX] Added support to load Dwarf Ranges(.dwranges) section.
1 parent 34bb642 commit def17cd

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

lldb/source/Plugins/ObjectFile/XCOFF/ObjectFileXCOFF.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -239,6 +239,7 @@ void ObjectFileXCOFF::CreateSectionsWithBitness(
239239
.Case(".dwinfo", eSectionTypeDWARFDebugInfo)
240240
.Case(".dwline", eSectionTypeDWARFDebugLine)
241241
.Case(".dwabrev", eSectionTypeDWARFDebugAbbrev)
242+
.Case(".dwrnges", eSectionTypeDWARFDebugRanges)
242243
.Default(eSectionTypeInvalid);
243244
}
244245

0 commit comments

Comments
 (0)