[PATCH] D112290: [WIP][Attributor] Look through indirect calls
Matt Arsenault via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Oct 21 19:22:34 PDT 2021
arsenm added inline comments.
================
Comment at: llvm/lib/Transforms/IPO/Attributor.cpp:1015
+ for (Function *Callee : Callees)
+ if (!Pred(*Callee, Callees.size() == 1))
+ return false;
----------------
Why the compare to 1 for a bool?
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D112290/new/
https://reviews.llvm.org/D112290
More information about the llvm-commits
mailing list