dsymutil reads address ranges from DebugMap, which contains addresses
inside object file. These addresses could be used as unique identifiers
of address ranges since --function-sections is not used on darwin. i.e. all
code is inside one section. For the case when DWARFLinker optimizes
debug info for --function-sections (Remove obsolete debug info: D74169)
it is necessary to have additional identifier for addresses(since addresses for different
sections could clash). This patch adds SectionIndex to address ranges
to have a unique identifier for the address range.
Testing: it passes "check-all" lit testing. MD5 checksum for clang .dSYM
bundle matches for the dsymutil with/without that patch.
Remove whitespace only change.