================
@@ -124,6 +124,13 @@ struct PortableMemInfoBlock {
OS << " " << #Name << ": " << Name << "\n";
#include "llvm/ProfileData/MIBEntryDef.inc"
#undef MIBEntryDef
+ if (AccessHistogramSize > 0) {
+ OS << " " << "AccessHistogramValues" << ":";
+ for (uint32_t I = 0; I < AccessHistogramSize; ++I) {
+ OS << " -" << ((uint64_t *)AccessHistogram)[I];
----------------
teresajohnson wrote:
Why the " -" in the outputs? I noticed when looking at the text that they look
like negative values as a result. Any reason not to just delimit with the space?
https://github.com/llvm/llvm-project/pull/94264
_______________________________________________
lldb-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits