[compiler-rt] [llvm] [llvm-profdata] Add block percent to detailed summary (PR #105915)

via llvm-commits llvm-commits at lists.llvm.org
Mon Aug 26 09:14:42 PDT 2024


================
@@ -251,17 +251,18 @@ ProfileSummary *ProfileSummary::getFromMD(Metadata *MD) {
 void ProfileSummary::printSummary(raw_ostream &OS) const {
   OS << "Total functions: " << NumFunctions << "\n";
   OS << "Maximum function count: " << MaxFunctionCount << "\n";
-  OS << "Maximum block count: " << MaxCount << "\n";
+  OS << "Maximum internal block count: " << MaxInternalCount << "\n";
----------------
WenleiHe wrote:

What is "internal block" and what differentiate it from just "block"?

https://github.com/llvm/llvm-project/pull/105915


More information about the llvm-commits mailing list