[PATCH] D57779: [SLP] Add support for throttling.
Dinar Temirbulatov via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed Mar 11 11:19:09 PDT 2020
dtemirbulatov marked an inline comment as done.
dtemirbulatov added inline comments.
================
Comment at: llvm/lib/Transforms/Vectorize/SLPVectorizer.cpp:4057
+ auto *Inst = cast<Instruction>(V);
+ for (Use &U : Inst->operands()) {
+ Value *Op = U.get();
----------------
eh, I found typo here, it should be Inst->Users, the same for 4101 line.
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D57779/new/
https://reviews.llvm.org/D57779
More information about the llvm-commits
mailing list