[LAA] Add missing newline in debug print
authorThomas Preud'homme <thomasp@graphcore.ai>
Wed, 23 Feb 2022 13:24:06 +0000 (13:24 +0000)
committerThomas Preud'homme <thomasp@graphcore.ai>
Wed, 23 Feb 2022 13:25:16 +0000 (13:25 +0000)
llvm/lib/Analysis/LoopAccessAnalysis.cpp

index 37f867e..2a62c46 100644 (file)
@@ -2291,7 +2291,7 @@ void LoopAccessInfo::collectStridedAccess(Value *MemAccess) {
                   "at most once.\n");
     return;
   }
-  LLVM_DEBUG(dbgs() << "LAA: Found a strided access that we can version.");
+  LLVM_DEBUG(dbgs() << "LAA: Found a strided access that we can version.\n");
 
   SymbolicStrides[Ptr] = Stride;
   StrideSet.insert(Stride);