Skip to content

Commit

Permalink
[BOLT][DWARF] Fix for Unsupported Debug section: debug_line.dwo warning
Browse files Browse the repository at this point in the history
Summary: Probably copy and paste mistake or something.

(cherry picked from FBD32625751)
  • Loading branch information
ayermolo authored and maksfb committed Nov 23, 2021
1 parent 63bebdd commit 68b0003
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions bolt/lib/Rewrite/DWARFRewriter.cpp
Expand Up @@ -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;
}

Expand Down

0 comments on commit 68b0003

Please sign in to comment.