[llvm] Optionally print `!prof` metadata inline (PR #130303)

Teresa Johnson via llvm-commits llvm-commits at lists.llvm.org
Fri Mar 7 08:30:38 PST 2025


================
@@ -4161,6 +4165,11 @@ void AssemblyWriter::printFunction(const Function *F) {
     writeOperand(F->getPersonalityFn(), /*PrintType=*/true);
   }
 
+  if (PrintPerfData && F->getEntryCount()) {
----------------
teresajohnson wrote:

Why not just if getMetadata returns non-null? getEntryCount does other stuff that is being ignored here.

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


More information about the llvm-commits mailing list