[llvm] [VPlan] Change parent of VPReductionRecipe to VPRecipeWithIRFlags. NFC (PR #130881)

Elvis Wang via llvm-commits llvm-commits at lists.llvm.org
Fri Mar 14 06:45:38 PDT 2025


================
@@ -788,6 +791,12 @@ class VPRecipeWithIRFlags : public VPSingleDefRecipe {
     }
   }
 
+  /// Set fast-math flags for this recipe.
+  void setFastMathFlags(FastMathFlags FMFs) {
+    OpType = OperationType::FPMathOp;
+    this->FMFs = FMFs;
+  }
+
----------------
ElvisWang123 wrote:

Added, thnaks.

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


More information about the llvm-commits mailing list