[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:40 PDT 2025


================
@@ -345,7 +349,7 @@ static VPRegionBlock *createReplicateRegion(VPReplicateRecipe *PredRecipe,
   auto *RecipeWithoutMask = new VPReplicateRecipe(
       PredRecipe->getUnderlyingInstr(),
       make_range(PredRecipe->op_begin(), std::prev(PredRecipe->op_end())),
-      PredRecipe->isUniform());
+      PredRecipe->isUniform(), /*Mask*/ nullptr, *PredRecipe);
----------------
ayalz wrote:

```suggestion
      PredRecipe->isUniform(), nullptr /*Mask*/, *PredRecipe);
```
and similarly below?

https://github.com/llvm/llvm-project/pull/136450


More information about the llvm-commits mailing list