Skip to content

[VPlan] Format some print forms.NFC #144644

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Jun 25, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions llvm/lib/Transforms/Vectorize/VPlan.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -465,7 +465,7 @@ void VPBasicBlock::connectToPredecessors(VPTransformState &State) {
"Predecessor basic-block not found building successor.");
BasicBlock *PredBB = CFG.VPBB2IRBB[PredVPBB];
auto *PredBBTerminator = PredBB->getTerminator();
LLVM_DEBUG(dbgs() << "LV: draw edge from" << PredBB->getName() << '\n');
LLVM_DEBUG(dbgs() << "LV: draw edge from " << PredBB->getName() << '\n');

auto *TermBr = dyn_cast<BranchInst>(PredBBTerminator);
if (isa<UnreachableInst>(PredBBTerminator)) {
Expand Down Expand Up @@ -579,8 +579,8 @@ VPBasicBlock *VPBasicBlock::clone() {
}

void VPBasicBlock::executeRecipes(VPTransformState *State, BasicBlock *BB) {
LLVM_DEBUG(dbgs() << "LV: vectorizing VPBB:" << getName()
<< " in BB:" << BB->getName() << '\n');
LLVM_DEBUG(dbgs() << "LV: vectorizing VPBB: " << getName()
<< " in BB: " << BB->getName() << '\n');

State->CFG.PrevVPBB = this;

Expand All @@ -589,7 +589,7 @@ void VPBasicBlock::executeRecipes(VPTransformState *State, BasicBlock *BB) {
Recipe.execute(*State);
}

LLVM_DEBUG(dbgs() << "LV: filled BB:" << *BB);
LLVM_DEBUG(dbgs() << "LV: filled BB: " << *BB);
}

VPBasicBlock *VPBasicBlock::splitAt(iterator SplitAt) {
Expand Down
Loading