Skip to content

Commit b4b1b84

Browse files
author
Sjoerd Meijer
committed
[MVE] fix typo in llvm debug message. NFC.
1 parent fc44693 commit b4b1b84

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

llvm/lib/Target/ARM/MVETailPredication.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -424,14 +424,14 @@ bool MVETailPredication::IsSafeActiveMask(IntrinsicInst *ActiveLaneMask,
424424
// the case when the element count is just a variable %N, we can just see
425425
// if it is an operand in the tripcount scev expression.
426426
if (isa<SCEVAddExpr>(TC) && !SE->hasOperand(TC, EC)) {
427-
LLVM_DEBUG(dbgs() << "ARM TP: 1Can't verify the element counter\n");
427+
LLVM_DEBUG(dbgs() << "ARM TP: Can't verify the element counter\n");
428428
return false;
429429
}
430430
} else if (const SCEVAddRecExpr *AddRecExpr = dyn_cast<SCEVAddRecExpr>(EC)) {
431431
// For more complicated AddRecExpr, check that the corresponding loop and
432432
// its loop hierarhy contains the trip count loop.
433433
if (!AddRecExpr->getLoop()->contains(L)) {
434-
LLVM_DEBUG(dbgs() << "ARM TP: 2Can't verify the element counter\n");
434+
LLVM_DEBUG(dbgs() << "ARM TP: Can't verify the element counter\n");
435435
return false;
436436
}
437437
} else {

0 commit comments

Comments
 (0)