[PATCH] D82970: [Scalarizer] Variable insert handling (PR46524)

Matt Arsenault via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Wed Jul 1 16:49:38 PDT 2020


arsenm added a comment.

I think this maybe should be a pass option



================
Comment at: llvm/lib/Transforms/Scalar/Scalarizer.cpp:777
+  VectorType *VT = dyn_cast<VectorType>(EEI.getOperand(0)->getType());
+  if (!VT)
+    return false;
----------------
Does this need to worry about scalable vectors?


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D82970





More information about the llvm-commits mailing list