[BOLT][DWARF] Fix for Unsupported Debug section: debug_line.dwo warning

Summary: Probably copy and paste mistake or something.

(cherry picked from FBD32625751)
This commit is contained in:
Alexander Yermolovich 2021-11-23 11:52:25 -08:00 committed by Maksim Panchenko
parent 63bebdd813
commit 68b0003ee3
1 changed files with 1 additions and 2 deletions

View File

@ -839,8 +839,7 @@ createKnownSectionsMap(const MCObjectFileInfo &MCOFI) {
{"debug_str.dwo", {MCOFI.getDwarfStrDWOSection(), DW_SECT_EXT_unknown}},
{"debug_loc.dwo", {MCOFI.getDwarfLocDWOSection(), DW_SECT_EXT_LOC}},
{"debug_abbrev.dwo", {MCOFI.getDwarfAbbrevDWOSection(), DW_SECT_ABBREV}},
{"debug_line.dwo",
{MCOFI.getDwarfLineDWOSection(), DW_SECT_EXT_unknown}}};
{"debug_line.dwo", {MCOFI.getDwarfLineDWOSection(), DW_SECT_LINE}}};
return KnownSectionsTemp;
}