We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b8d1f3d commit bd9e31eCopy full SHA for bd9e31e
llvm/lib/DWARFLinker/Parallel/DWARFLinkerImpl.cpp
@@ -891,10 +891,9 @@ void DWARFLinkerImpl::printStatistic() {
891
CU->tryGetSectionDescriptor(DebugSectionKind::DebugInfo))
892
AllDebugInfoSectionsSize += (*DebugInfo)->getContents().size();
893
894
- SizeByObject[Context->InputDWARFFile.FileName].Input =
895
- Context->OriginalDebugInfoSize;
896
- SizeByObject[Context->InputDWARFFile.FileName].Output =
897
- AllDebugInfoSectionsSize;
+ auto &Size = SizeByObject[Context->InputDWARFFile.FileName];
+ Size.Input = Context->OriginalDebugInfoSize;
+ Size.Output = AllDebugInfoSectionsSize;
898
}
899
900
// Create a vector sorted in descending order by output size.
0 commit comments