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 c543836 commit 545a98cCopy full SHA for 545a98c
bolt/lib/Profile/Heatmap.cpp
@@ -304,11 +304,10 @@ void Heatmap::printSectionHotness(raw_ostream &OS) const {
304
305
uint64_t UnmappedHotness = 0;
306
auto RecordUnmappedBucket = [&](uint64_t Address, uint64_t Frequency) {
307
- if (opts::Verbosity >= 1)
308
- errs() << "Couldn't map the address bucket ["
309
- << formatv("{0:x}, {1:x}", Address, Address + BucketSize)
310
- << "] containing " << Frequency
311
- << " samples to a text section in the binary.\n";
+ errs() << "Couldn't map the address bucket [0x" << Twine::utohexstr(Address)
+ << ", 0x" << Twine::utohexstr(Address + BucketSize)
+ << "] containing " << Frequency
+ << " samples to a text section in the binary.";
312
UnmappedHotness += Frequency;
313
};
314
0 commit comments