[llvm] aba0ce1 - [LV] Add new line to interleaving disabled message (#152722)
via llvm-commits
llvm-commits at lists.llvm.org
Mon Aug 11 01:53:22 PDT 2025
Author: David Sherwood
Date: 2025-08-11T09:53:20+01:00
New Revision: aba0ce10c79c0ce868bbb00530fc1d7cfe7541b1
URL: https://github.com/llvm/llvm-project/commit/aba0ce10c79c0ce868bbb00530fc1d7cfe7541b1
DIFF: https://github.com/llvm/llvm-project/commit/aba0ce10c79c0ce868bbb00530fc1d7cfe7541b1.diff
LOG: [LV] Add new line to interleaving disabled message (#152722)
Added:
Modified:
llvm/lib/Transforms/Vectorize/LoopVectorize.cpp
Removed:
################################################################################
diff --git a/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp b/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp
index 284592133890e..e5f223e5082b1 100644
--- a/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp
+++ b/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp
@@ -10175,8 +10175,8 @@ bool LoopVectorizePass::processLoop(Loop *L) {
}
} else if (IC > 1 && UserIC == 1) {
// Tell the user interleaving is beneficial, but it explicitly disabled.
- LLVM_DEBUG(
- dbgs() << "LV: Interleaving is beneficial but is explicitly disabled.");
+ LLVM_DEBUG(dbgs() << "LV: Interleaving is beneficial but is explicitly "
+ "disabled.\n");
IntDiagMsg = {"InterleavingBeneficialButDisabled",
"the cost-model indicates that interleaving is beneficial "
"but is explicitly disabled or interleave count is set to 1"};
More information about the llvm-commits
mailing list