[PATCH] D114121: [SLP]Improve isFixedVectorShuffle and its use.
Alexey Bataev via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Nov 18 09:25:40 PST 2021
ABataev added inline comments.
================
Comment at: llvm/lib/Transforms/Vectorize/SLPVectorizer.cpp:4506
+ [](Value *V) {
+ return isa<ExtractElementInst>(V) || isa<UndefValue>(V);
+ })) &&
----------------
RKSimon wrote:
> Can we use "isa<ExtractElementInst,UndefValue>(V)" here?
Sure, will do
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D114121/new/
https://reviews.llvm.org/D114121
More information about the llvm-commits
mailing list