[llvm] [VPlan] Introduce VPInstructionWithType, use instead of VPScalarCast(NFC) (PR #129706)
via llvm-commits
llvm-commits at lists.llvm.org
Sun Mar 23 22:41:17 PDT 2025
================
@@ -259,20 +259,17 @@ Type *VPTypeAnalysis::inferScalarType(const VPValue *V) {
VPPartialReductionRecipe>([this](const VPRecipeBase *R) {
return inferScalarType(R->getOperand(0));
})
+ .Case<VPInstructionWithType, VPWidenIntrinsicRecipe>(
+ [](const auto *R) { return R->getResultType(); })
----------------
ayalz wrote:
Worth noting that this case should appear before the next to catch VPInstructionWithType before its parent VPInstruction?
https://github.com/llvm/llvm-project/pull/129706
More information about the llvm-commits
mailing list