[llvm] [VPlan] Refactor VPlan creation, add transform introducing region (NFC). (PR #128419)
via llvm-commits
llvm-commits at lists.llvm.org
Fri Feb 28 14:36:25 PST 2025
================
@@ -449,16 +427,22 @@ void PlainCFGBuilder::buildPlainCFG(
VPBasicBlock *Successor0 = getOrCreateVPBB(IRSucc0);
VPBasicBlock *Successor1 = getOrCreateVPBB(IRSucc1);
if (BB == LoopForBB->getLoopLatch()) {
- // For a latch we need to set the successor of the region rather than that
- // of VPBB and it should be set to the exit, i.e., non-header successor,
+ // For a latch we need to set the successor of the region rather
+ // than that
+ // of VPBB and it should be set to the exit, i.e., non-header
+ // successor,
// except for the top region, whose successor was set when creating
// VPlan's skeleton.
- assert(TheRegion != Region &&
+ assert(LoopForBB != TheLoop &&
"Latch of the top region should have been handled earlier");
Region->setOneSuccessor(isHeaderVPBB(Successor0) ? Successor1
: Successor0);
Region->setExiting(VPBB);
continue;
+
----------------
ayalz wrote:
Drop this `continue;`?
How does this work with the following code being unreachable - is it really needed? tested?
https://github.com/llvm/llvm-project/pull/128419
More information about the llvm-commits
mailing list