[PATCH] D104122: [SLP]Improve vectorization of stores.
Simon Pilgrim via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Mon Jul 5 09:14:22 PDT 2021
RKSimon added inline comments.
================
Comment at: llvm/lib/Transforms/Vectorize/SLPVectorizer.cpp:8660
+ auto *NodeI1 = DT->getNode(I1->getParent());
+ auto *NodeI2 = DT->getNode(I2->getParent());
+ assert(NodeI1 && "Should only process reachable instructions");
----------------
Avoid use of auto for non trivially determinable types.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D104122/new/
https://reviews.llvm.org/D104122
More information about the llvm-commits
mailing list