[LAA] Add missing newline in debug print

This commit is contained in:
Thomas Preud'homme 2022-02-23 13:24:06 +00:00
parent 14536ce007
commit 40f9081958
1 changed files with 1 additions and 1 deletions

View 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);