[llvm] [LV] Use original trip-count as the vector-trip-count if use predicated EVL instructions for tail-folding. (PR #132675)
Mel Chen via llvm-commits
llvm-commits at lists.llvm.org
Mon Mar 24 03:21:19 PDT 2025
================
@@ -1905,7 +1906,9 @@ bool VPlanTransforms::tryAddExplicitVectorLength(
// Replace all uses of VPCanonicalIVPHIRecipe by
// VPEVLBasedIVPHIRecipe except for the canonical IV increment.
CanonicalIVPHI->replaceAllUsesWith(EVLPhi);
+ CanonicalIVIncrement->replaceAllUsesWith(NextEVLIV);
----------------
Mel-Chen wrote:
Why not erase CanonicalIVIncrement from parent if we replaced all uses of CanonicalIVIncrement?
https://github.com/llvm/llvm-project/pull/132675
More information about the llvm-commits
mailing list