[PATCH] D70542: [AArch64][SVE] Add intrinsics for gather loads with 64-bit offsets
Sander de Smalen via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Fri Nov 22 11:02:25 PST 2019
sdesmalen added inline comments.
================
Comment at: llvm/lib/Target/AArch64/AArch64ISelLowering.cpp:11752
+static MVT getPackedIntegerSVEType(unsigned NumElements) {
+ switch (NumElements) {
----------------
The packed vector type is not defined by the number of elements, but rather the element type, so should take `MVT EltTy` instead.
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D70542/new/
https://reviews.llvm.org/D70542
More information about the llvm-commits
mailing list