[PATCH] D35829: [X86][LLVM]Expanding Supports lowerInterleavedStore() in X86InterleavedAccess (VF16 stride 4).

Guy Blank via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Tue Aug 1 23:20:21 PDT 2017


guyblank accepted this revision.
guyblank added a comment.
This revision is now accepted and ready to land.

LGTM with one minor comment.



================
Comment at: lib/Target/X86/X86InterleavedAccess.cpp:210
 
+  Type *VecTyepVt = VectorType::get(Type::getInt8Ty(Shuffles[0]->getContext()),
+                                    numberOfElement);
----------------
you can use MVT::getVectorVT() directly, without creating the Type first.


https://reviews.llvm.org/D35829





More information about the llvm-commits mailing list