Skip to content

Commit 4ac4726

Browse files
authored
[VPlan] Format some print forms.NFC (llvm#144644)
1 parent d12fb1f commit 4ac4726

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

llvm/lib/Transforms/Vectorize/VPlan.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -465,7 +465,7 @@ void VPBasicBlock::connectToPredecessors(VPTransformState &State) {
465465
"Predecessor basic-block not found building successor.");
466466
BasicBlock *PredBB = CFG.VPBB2IRBB[PredVPBB];
467467
auto *PredBBTerminator = PredBB->getTerminator();
468-
LLVM_DEBUG(dbgs() << "LV: draw edge from" << PredBB->getName() << '\n');
468+
LLVM_DEBUG(dbgs() << "LV: draw edge from " << PredBB->getName() << '\n');
469469

470470
auto *TermBr = dyn_cast<BranchInst>(PredBBTerminator);
471471
if (isa<UnreachableInst>(PredBBTerminator)) {
@@ -579,8 +579,8 @@ VPBasicBlock *VPBasicBlock::clone() {
579579
}
580580

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

585585
State->CFG.PrevVPBB = this;
586586

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

592-
LLVM_DEBUG(dbgs() << "LV: filled BB:" << *BB);
592+
LLVM_DEBUG(dbgs() << "LV: filled BB: " << *BB);
593593
}
594594

595595
VPBasicBlock *VPBasicBlock::splitAt(iterator SplitAt) {

0 commit comments

Comments
 (0)