[PATCH] D120993: [PassManager] Add pretty stack entries before P->run() call.
Florian Hahn via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Fri Mar 4 13:13:29 PST 2022
fhahn marked an inline comment as done.
fhahn added inline comments.
================
Comment at: llvm/lib/IR/PassManager.cpp:166
+ if (MF) {
+ OS << " on machine function \n"; //'" << MF->getName() << "'.\n";
+ return;
----------------
myhsu wrote:
> I don't think `MF->getName()` should be commented
Ah thanks, I forgot about that. Replaced with a comment.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D120993/new/
https://reviews.llvm.org/D120993
More information about the llvm-commits
mailing list