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) {
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
581581void 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
595595VPBasicBlock *VPBasicBlock::splitAt (iterator SplitAt) {
You can’t perform that action at this time.
0 commit comments