[llvm] [VPlan] Use VPInstruction for VPScalarPHIRecipe. (NFCI) (PR #129767)

Florian Hahn via llvm-commits llvm-commits at lists.llvm.org
Wed Mar 12 03:57:47 PDT 2025


================
@@ -2996,6 +2955,13 @@ class VPWidenCanonicalIVRecipe : public VPSingleDefRecipe,
     return 0;
   }
 
+  /// Returns true if the recipe only uses the first lane of operand \p Op.
+  bool onlyFirstLaneUsed(const VPValue *Op) const override {
+    assert(is_contained(operands(), Op) &&
+           "Op must be an operand of the recipe");
+    return true;
+  }
+
----------------
fhahn wrote:

This was an unrelated change that slipped in, removed thanks

https://github.com/llvm/llvm-project/pull/129767


More information about the llvm-commits mailing list