mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-03-04 10:30:30 +00:00
Fix broken test.
llvm-svn: 312359
This commit is contained in:
parent
fa9d44b037
commit
e95b931c23
@ -503,11 +503,16 @@ Error DumpOutputStyle::dumpSymbolStats() {
|
||||
StatCollection SymStats;
|
||||
StatCollection ChunkStats;
|
||||
|
||||
iterateSymbolGroups(File, None, [&](uint32_t Modi, const SymbolGroup &SG) {
|
||||
Optional<PrintScope> Scope;
|
||||
if (File.isPdb())
|
||||
Scope.emplace(P, 2);
|
||||
|
||||
iterateSymbolGroups(File, Scope, [&](uint32_t Modi, const SymbolGroup &SG) {
|
||||
StatCollection SS = getSymbolStats(SG, SymStats);
|
||||
StatCollection CS = getChunkStats(SG, ChunkStats);
|
||||
|
||||
if (SG.getFile().isPdb()) {
|
||||
AutoIndent Indent(P);
|
||||
auto Modules = cantFail(File.pdb().getPDBDbiStream()).modules();
|
||||
uint32_t ModCount = Modules.getModuleCount();
|
||||
DbiModuleDescriptor Desc = Modules.getModuleDescriptor(Modi);
|
||||
@ -519,7 +524,6 @@ Error DumpOutputStyle::dumpSymbolStats() {
|
||||
Desc.getModuleName());
|
||||
return;
|
||||
}
|
||||
|
||||
P.formatLine("Stream {0}, {1} bytes", StreamIdx,
|
||||
getPdb().getStreamByteSize(StreamIdx));
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user