[llvm] 4ac4726 - [VPlan] Format some print forms.NFC (#144644)
via llvm-commits
llvm-commits at lists.llvm.org
Wed Jun 25 01:14:54 PDT 2025
Author: LiqinWeng
Date: 2025-06-25T16:14:50+08:00
New Revision: 4ac4726d00644f6c6b0e2de1df0d00deed0015bf
URL: https://github.com/llvm/llvm-project/commit/4ac4726d00644f6c6b0e2de1df0d00deed0015bf
DIFF: https://github.com/llvm/llvm-project/commit/4ac4726d00644f6c6b0e2de1df0d00deed0015bf.diff
LOG: [VPlan] Format some print forms.NFC (#144644)
Added:
Modified:
llvm/lib/Transforms/Vectorize/VPlan.cpp
Removed:
################################################################################
diff --git a/llvm/lib/Transforms/Vectorize/VPlan.cpp b/llvm/lib/Transforms/Vectorize/VPlan.cpp
index a3f39f5ad7a29..fe20d48f780e2 100644
--- a/llvm/lib/Transforms/Vectorize/VPlan.cpp
+++ b/llvm/lib/Transforms/Vectorize/VPlan.cpp
@@ -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)) {
@@ -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;
@@ -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) {
More information about the llvm-commits
mailing list