[llvm] [VPlan] Introduce VPInstructionWithType, use instead of VPScalarCast(NFC) (PR #129706)
via llvm-commits
llvm-commits at lists.llvm.org
Tue Mar 25 01:42:47 PDT 2025
================
@@ -10412,8 +10411,9 @@ preparePlanForEpilogueVectorLoop(VPlan &Plan, Loop *L,
assert(all_of(IV->users(),
[](const VPUser *U) {
return isa<VPScalarIVStepsRecipe>(U) ||
- isa<VPScalarCastRecipe>(U) ||
isa<VPDerivedIVRecipe>(U) ||
+ Instruction::isCast(
+ cast<VPInstruction>(U)->getOpcode()) ||
----------------
ayalz wrote:
Worth wrapping in VPInstruction::isCast()?
https://github.com/llvm/llvm-project/pull/129706
More information about the llvm-commits
mailing list