[PATCH] D130692: [AArch64][SVE] Narrow 64bit gather index to 32bit

Peter Waller via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Thu Jul 28 06:07:22 PDT 2022


peterwaller-arm added inline comments.


================
Comment at: llvm/lib/Target/AArch64/AArch64ISelLowering.cpp:17655
+  SDValue IndexOp0 = Index.getOperand(0);
+  if (IndexOp0.getValueType().getVectorElementType().getFixedSizeInBits() >=
+      32) {
----------------
s/.getVectorElementType().getFixedSizeInBits()/.getScalarSizeInBits()/


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D130692/new/

https://reviews.llvm.org/D130692



More information about the llvm-commits mailing list