[llvm] [BOLT]Fix profile quality reporting for small binaries (PR #130810)

Amir Ayupov via llvm-commits llvm-commits at lists.llvm.org
Wed Mar 12 12:29:24 PDT 2025


================
@@ -157,8 +157,10 @@ void printCFGContinuityStats(raw_ostream &OS,
     FractionECUnreachables.push_back(FractionECUnreachable);
   }
 
-  if (FractionECUnreachables.empty())
+  if (FractionECUnreachables.empty()) {
+    OS << "function CFG discontinuity 0.00%; ";
----------------
aaupov wrote:

The issue is due to single-BB functions, right? Can we just assume the discontinuity is 0 for them, instead of skipping in L94-95? And apply a similar logic to other metrics.

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


More information about the llvm-commits mailing list