1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-02-01 13:11:39 +01:00

DebugInfo: Add {} to address -Wdangling-else warning.

This commit is contained in:
David Blaikie 2019-12-24 01:14:15 -08:00
parent cb03a67359
commit d3513478fe

View File

@ -1193,7 +1193,7 @@ void DwarfDebug::finalizeModuleInfo() {
auto *CUNode = cast<DICompileUnit>(P.first);
// If compile Unit has macros, emit "DW_AT_macro_info" attribute.
if (CUNode->getMacros())
if (CUNode->getMacros()) {
if (useSplitDwarf())
TheCU.addLabelDelta(TheCU.getUnitDie(), dwarf::DW_AT_macro_info,
U.getMacroLabelBegin(),
@ -1202,6 +1202,7 @@ void DwarfDebug::finalizeModuleInfo() {
U.addSectionLabel(U.getUnitDie(), dwarf::DW_AT_macro_info,
U.getMacroLabelBegin(),
TLOF.getDwarfMacinfoSection()->getBeginSymbol());
}
}
// Emit all frontend-produced Skeleton CUs, i.e., Clang modules.