[llvm] [VPlan] Expand VPWidenIntOrFpInductionRecipe into separate recipes (PR #118638)
Luke Lau via llvm-commits
llvm-commits at lists.llvm.org
Tue Feb 18 02:14:52 PST 2025
================
@@ -261,6 +261,14 @@ class VPBuilder {
FPBinOp ? FPBinOp->getFastMathFlags() : FastMathFlags()));
}
+ VPInstruction *createSplat(VPValue *Val) {
+ return tryInsertInstruction(new VPInstruction(VPInstruction::Splat, {Val}));
+ }
+
+ VPStepVectorRecipe *createStepVector(Type *Ty) {
----------------
lukel97 wrote:
I've reworked this to be a VPInstruction::StepVector now
https://github.com/llvm/llvm-project/pull/118638
More information about the llvm-commits
mailing list