[llvm] [VPlan] Impl VPlan-based pattern match for ExtendedRed and MulAccRed (PR #113903)

Elvis Wang via llvm-commits llvm-commits at lists.llvm.org
Tue Apr 22 21:36:16 PDT 2025


================
@@ -78,6 +78,11 @@ struct VFRange {
     return End.getKnownMinValue() <= Start.getKnownMinValue();
   }
 
+  bool contains(const ElementCount &VF) const {
+    return VF.getKnownMinValue() >= Start.getKnownMinValue() &&
+           VF.getKnownMinValue() < End.getKnownMinValue();
+  }
+
----------------
ElvisWang123 wrote:

Removed, thanks!

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


More information about the llvm-commits mailing list