[llvm] [VPlan] Refine DerivedIV nowrap contract (PR #205908)
Florian Hahn via llvm-commits
llvm-commits at lists.llvm.org
Tue Jun 30 01:16:51 PDT 2026
================
@@ -2910,9 +2910,9 @@ addVPLaneMaskPhiAndUpdateExitBranch(VPlan &Plan) {
VPValue *TC = Plan.getTripCount();
VPValue *VF = &Plan.getVF();
- auto *EntryIncrement = Builder.createOverflowingOp(
- VPInstruction::CanonicalIVIncrementForPart, {StartV, VF}, {false, false},
- DL, "index.part.next");
+ auto *EntryIncrement =
+ Builder.createOverflowingOp(VPInstruction::CanonicalIVIncrementForPart,
+ {StartV, VF}, {}, DL, "index.part.next");
----------------
fhahn wrote:
unrelated change?
https://github.com/llvm/llvm-project/pull/205908
More information about the llvm-commits
mailing list