[llvm] b4b1b84 - [MVE] fix typo in llvm debug message. NFC.

Sjoerd Meijer via llvm-commits llvm-commits at lists.llvm.org
Tue Sep 15 02:14:34 PDT 2020


Author: Sjoerd Meijer
Date: 2020-09-15T10:13:54+01:00
New Revision: b4b1b84106a03d7b6374090bc0ff04b3a77a0862

URL: https://github.com/llvm/llvm-project/commit/b4b1b84106a03d7b6374090bc0ff04b3a77a0862
DIFF: https://github.com/llvm/llvm-project/commit/b4b1b84106a03d7b6374090bc0ff04b3a77a0862.diff

LOG: [MVE] fix typo in llvm debug message. NFC.

Added: 
    

Modified: 
    llvm/lib/Target/ARM/MVETailPredication.cpp

Removed: 
    


################################################################################
diff  --git a/llvm/lib/Target/ARM/MVETailPredication.cpp b/llvm/lib/Target/ARM/MVETailPredication.cpp
index 26e21f04c6b9..b2c15be75cd4 100644
--- a/llvm/lib/Target/ARM/MVETailPredication.cpp
+++ b/llvm/lib/Target/ARM/MVETailPredication.cpp
@@ -424,14 +424,14 @@ bool MVETailPredication::IsSafeActiveMask(IntrinsicInst *ActiveLaneMask,
       // the case when the element count is just a variable %N, we can just see
       // if it is an operand in the tripcount scev expression.
       if (isa<SCEVAddExpr>(TC) && !SE->hasOperand(TC, EC)) {
-        LLVM_DEBUG(dbgs() << "ARM TP: 1Can't verify the element counter\n");
+        LLVM_DEBUG(dbgs() << "ARM TP: Can't verify the element counter\n");
         return false;
       }
     } else if (const SCEVAddRecExpr *AddRecExpr = dyn_cast<SCEVAddRecExpr>(EC)) {
       // For more complicated AddRecExpr, check that the corresponding loop and
       // its loop hierarhy contains the trip count loop.
       if (!AddRecExpr->getLoop()->contains(L)) {
-        LLVM_DEBUG(dbgs() << "ARM TP: 2Can't verify the element counter\n");
+        LLVM_DEBUG(dbgs() << "ARM TP: Can't verify the element counter\n");
         return false;
       }
     } else {


        


More information about the llvm-commits mailing list