[llvm] [CodeGen] Port `GCInfoPrinter` to new pass manager (PR #74972)
Aiden Grossman via llvm-commits
llvm-commits at lists.llvm.org
Sun Dec 10 18:11:38 PST 2023
================
@@ -101,7 +189,7 @@ void Printer::getAnalysisUsage(AnalysisUsage &AU) const {
}
bool Printer::runOnFunction(Function &F) {
- if (F.hasGC())
+ if (!F.hasGC())
----------------
boomanaiden154 wrote:
Why is this getting negated?
https://github.com/llvm/llvm-project/pull/74972
More information about the llvm-commits
mailing list