File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -398,18 +398,18 @@ std::error_code DataAggregator::writeAutoFDOData(StringRef OutputFilename) {
398
398
399
399
OutFile << FallthroughLBRs.size () << " \n " ;
400
400
for (const auto &[Trace, Info] : FallthroughLBRs) {
401
- OutFile << formatv (" {0:x}-{1:x}:{2}\n " , filterAddress (Trace.From ),
401
+ OutFile << formatv (" {0:x- }-{1:x- }:{2}\n " , filterAddress (Trace.From ),
402
402
filterAddress (Trace.To ),
403
403
Info.InternCount + Info.ExternCount );
404
404
}
405
405
406
406
OutFile << BasicSamples.size () << " \n " ;
407
407
for (const auto [PC, HitCount] : BasicSamples)
408
- OutFile << formatv (" {0:x}:{1}\n " , filterAddress (PC), HitCount);
408
+ OutFile << formatv (" {0:x- }:{1}\n " , filterAddress (PC), HitCount);
409
409
410
410
OutFile << BranchLBRs.size () << " \n " ;
411
411
for (const auto &[Trace, Info] : BranchLBRs) {
412
- OutFile << formatv (" {0:x}->{1:x}:{2}\n " , filterAddress (Trace.From ),
412
+ OutFile << formatv (" {0:x- }->{1:x- }:{2}\n " , filterAddress (Trace.From ),
413
413
filterAddress (Trace.To ), Info.TakenCount );
414
414
}
415
415
You can’t perform that action at this time.
0 commit comments