[PATCH] D103027: [VP][SelectionDAG] Add a target-configurable EVL operand type

Fraser Cormack via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Tue May 25 05:06:24 PDT 2021


frasercrmck added inline comments.


================
Comment at: llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp:7307
+    if (I == EVLParamPos) {
+      assert(EVLParamVT.isScalarInteger() && EVLParamVT.bitsGE(MVT::i32) &&
+             "Unexpected target EVL type");
----------------
simoll wrote:
> Hoist this up? The assertion does not (actually) depend on the loop.
Ah yes, leftover from some refactoring. Thanks!


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D103027



More information about the llvm-commits mailing list