diff options
Diffstat (limited to 'lldb/source/Symbol/ObjectFile.cpp')
| -rw-r--r-- | lldb/source/Symbol/ObjectFile.cpp | 8 | 
1 files changed, 4 insertions, 4 deletions
diff --git a/lldb/source/Symbol/ObjectFile.cpp b/lldb/source/Symbol/ObjectFile.cpp index 9a79b3c..6f5348c 100644 --- a/lldb/source/Symbol/ObjectFile.cpp +++ b/lldb/source/Symbol/ObjectFile.cpp @@ -647,14 +647,14 @@ ObjectFile::GetDWARFSectionTypeFromName(llvm::StringRef name) {        .Case("frame", eSectionTypeDWARFDebugFrame)        .Case("info", eSectionTypeDWARFDebugInfo)        .Case("info.dwo", eSectionTypeDWARFDebugInfoDwo) -      .Cases("line", "line.dwo", eSectionTypeDWARFDebugLine) -      .Cases("line_str", "line_str.dwo", eSectionTypeDWARFDebugLineStr) +      .Cases({"line", "line.dwo"}, eSectionTypeDWARFDebugLine) +      .Cases({"line_str", "line_str.dwo"}, eSectionTypeDWARFDebugLineStr)        .Case("loc", eSectionTypeDWARFDebugLoc)        .Case("loc.dwo", eSectionTypeDWARFDebugLocDwo)        .Case("loclists", eSectionTypeDWARFDebugLocLists)        .Case("loclists.dwo", eSectionTypeDWARFDebugLocListsDwo)        .Case("macinfo", eSectionTypeDWARFDebugMacInfo) -      .Cases("macro", "macro.dwo", eSectionTypeDWARFDebugMacro) +      .Cases({"macro", "macro.dwo"}, eSectionTypeDWARFDebugMacro)        .Case("names", eSectionTypeDWARFDebugNames)        .Case("pubnames", eSectionTypeDWARFDebugPubNames)        .Case("pubtypes", eSectionTypeDWARFDebugPubTypes) @@ -663,7 +663,7 @@ ObjectFile::GetDWARFSectionTypeFromName(llvm::StringRef name) {        .Case("rnglists.dwo", eSectionTypeDWARFDebugRngListsDwo)        .Case("str", eSectionTypeDWARFDebugStr)        .Case("str.dwo", eSectionTypeDWARFDebugStrDwo) -      .Cases("str_offsets", "str_offs", eSectionTypeDWARFDebugStrOffsets) +      .Cases({"str_offsets", "str_offs"}, eSectionTypeDWARFDebugStrOffsets)        .Case("str_offsets.dwo", eSectionTypeDWARFDebugStrOffsetsDwo)        .Case("tu_index", eSectionTypeDWARFDebugTuIndex)        .Case("types", eSectionTypeDWARFDebugTypes)  | 
