File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
llvm/lib/Transforms/Vectorize Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -465,7 +465,7 @@ void VPBasicBlock::connectToPredecessors(VPTransformState &State) {
465
465
" Predecessor basic-block not found building successor." );
466
466
BasicBlock *PredBB = CFG.VPBB2IRBB [PredVPBB];
467
467
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 ' );
469
469
470
470
auto *TermBr = dyn_cast<BranchInst>(PredBBTerminator);
471
471
if (isa<UnreachableInst>(PredBBTerminator)) {
@@ -579,8 +579,8 @@ VPBasicBlock *VPBasicBlock::clone() {
579
579
}
580
580
581
581
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 ' );
584
584
585
585
State->CFG .PrevVPBB = this ;
586
586
@@ -589,7 +589,7 @@ void VPBasicBlock::executeRecipes(VPTransformState *State, BasicBlock *BB) {
589
589
Recipe.execute (*State);
590
590
}
591
591
592
- LLVM_DEBUG (dbgs () << " LV: filled BB:" << *BB);
592
+ LLVM_DEBUG (dbgs () << " LV: filled BB: " << *BB);
593
593
}
594
594
595
595
VPBasicBlock *VPBasicBlock::splitAt (iterator SplitAt) {
You can’t perform that action at this time.
0 commit comments