[PATCH] D132172: [LoopVectorize][LoopAccessAnalysis] add newline to debug message
Craig Topper via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Aug 18 13:44:27 PDT 2022
This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rGf29401fcdfc1: [LoopVectorize][LoopAccessAnalysis] add newline to debug message (authored by michaelmaitland, committed by craig.topper).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D132172/new/
https://reviews.llvm.org/D132172
Files:
llvm/lib/Analysis/LoopAccessAnalysis.cpp
Index: llvm/lib/Analysis/LoopAccessAnalysis.cpp
===================================================================
--- llvm/lib/Analysis/LoopAccessAnalysis.cpp
+++ llvm/lib/Analysis/LoopAccessAnalysis.cpp
@@ -1972,7 +1972,7 @@
// Unsafe if the minimum distance needed is greater than max safe distance.
if (MinDistanceNeeded > MaxSafeDepDistBytes) {
LLVM_DEBUG(dbgs() << "LAA: Failure because it needs at least "
- << MinDistanceNeeded << " size in bytes");
+ << MinDistanceNeeded << " size in bytes\n");
return Dependence::Backward;
}
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D132172.453772.patch
Type: text/x-patch
Size: 600 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20220818/1664694f/attachment.bin>
More information about the llvm-commits
mailing list