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

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


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

Document const true param here and in call later on.

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


More information about the llvm-commits mailing list