[llvm] [VPlan] Manage noalias/alias_scope metadata in VPlan. (NFC) (PR #136450)
via llvm-commits
llvm-commits at lists.llvm.org
Wed May 7 14:47:39 PDT 2025
================
@@ -2823,7 +2829,7 @@ void VPlanTransforms::narrowInterleaveGroups(VPlan &Plan, ElementCount VF,
auto *S = new VPWidenStoreRecipe(
*cast<StoreInst>(StoreGroup->getInterleaveGroup()->getInsertPos()),
StoreGroup->getAddr(), Res, nullptr, /*Consecutive=*/true,
- /*Reverse=*/false, StoreGroup->getDebugLoc());
+ /*Reverse=*/false, {}, StoreGroup->getDebugLoc());
----------------
ayalz wrote:
```suggestion
/*Reverse=*/false, VPIRMetadata(SI), StoreGroup->getDebugLoc());
```
similar to LI above?
https://github.com/llvm/llvm-project/pull/136450
More information about the llvm-commits
mailing list