[llvm] [VPlan] Replace VPRegionBlock with explicit CFG before execute (NFCI). (PR #117506)
Florian Hahn via llvm-commits
llvm-commits at lists.llvm.org
Sat May 24 03:45:28 PDT 2025
================
@@ -424,13 +450,19 @@ void VPBasicBlock::connectToPredecessors(VPTransformState &State) {
if (ParentLoop && !State.LI->getLoopFor(NewBB))
ParentLoop->addBasicBlockToLoop(NewBB, *State.LI);
+ auto Preds = to_vector(getHierarchicalPredecessors());
----------------
fhahn wrote:
Yep, updated thanks
https://github.com/llvm/llvm-project/pull/117506
More information about the llvm-commits
mailing list