[llvm] [VPlan] Implement cloning of VPlans. (PR #73158)
via llvm-commits
llvm-commits at lists.llvm.org
Sun Jan 14 11:11:42 PST 2024
================
@@ -982,6 +994,65 @@ void VPlan::updateDominatorTree(DominatorTree *DT, BasicBlock *LoopHeaderBB,
assert(DT->verify(DominatorTree::VerificationLevel::Fast));
}
+static void remapVPValues(VPBasicBlock *OldBB, VPBasicBlock *NewBB,
+ DenseMap<VPValue *, VPValue *> &Old2NewVPValues,
+ bool Full = false) {
----------------
ayalz wrote:
Setting Full to false by default is useless - the single caller passes an explicit true?
https://github.com/llvm/llvm-project/pull/73158
More information about the llvm-commits
mailing list