[llvm] [VPlan] Implement interleaving as VPlan-to-VPlan transform. (PR #95842)
Florian Hahn via llvm-commits
llvm-commits at lists.llvm.org
Sun Sep 15 06:26:06 PDT 2024
================
@@ -1752,7 +1758,7 @@ class VPVectorPointerRecipe : public VPRecipeWithIRFlags {
bool onlyFirstPartUsed(const VPValue *Op) const override {
assert(is_contained(operands(), Op) &&
"Op must be an operand of the recipe");
- assert(getNumOperands() == 1 && "must have a single operand");
+ assert(getNumOperands() <= 2 && "must have a single operand");
----------------
fhahn wrote:
Done, thanks!
https://github.com/llvm/llvm-project/pull/95842
More information about the llvm-commits
mailing list