[PATCH] D126455: [FuncSpec] Make the Function Specializer part of the IPSCCP pass.
Momchil Velikov via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed Nov 9 04:24:11 PST 2022
chill added inline comments.
================
Comment at: llvm/lib/Transforms/IPO/FunctionSpecialization.cpp:244
+/// \returns true if at least one function is specialized.
+bool FunctionSpecializer::specialize() {
+ bool Changed = false;
----------------
I believe the LLVM convention for these kinds of classes/methods is `run`, e.g. `Vectorizer::run()`, `EarlyCSE::run()`, etc.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D126455/new/
https://reviews.llvm.org/D126455
More information about the llvm-commits
mailing list