[PATCH] D26905: [SLP] Vectorize loads of consecutive memory accesses, accessed in non-consecutive (jumbled) way.
Matthew Simpson via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue Jan 3 08:32:34 PST 2017
mssimpso added inline comments.
================
Comment at: lib/Transforms/Vectorize/SLPVectorizer.cpp:2575-2576
+ if (E->NeedToShuffle) {
+ assert(VL.size() == E->Scalars.size() &&
+ "Equal number of scalars expected");
+ SmallVector<Constant *, 8> Mask;
----------------
Hi Shahid,
I'm hitting the assertion here while testing this patch. Can you take a look?
https://reviews.llvm.org/D26905
More information about the llvm-commits
mailing list