[llvm] ebb78a9 - [LV] Remove stray dbgs() call after 774fc63490939.
Florian Hahn via llvm-commits
llvm-commits at lists.llvm.org
Tue Jul 5 04:58:43 PDT 2022
Author: Florian Hahn
Date: 2022-07-05T12:58:18+01:00
New Revision: ebb78a95cede526ece9b904e9ba623d4b963df60
URL: https://github.com/llvm/llvm-project/commit/ebb78a95cede526ece9b904e9ba623d4b963df60
DIFF: https://github.com/llvm/llvm-project/commit/ebb78a95cede526ece9b904e9ba623d4b963df60.diff
LOG: [LV] Remove stray dbgs() call after 774fc63490939.
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 03f1d9ec5b37..e46bbd41e744 100644
--- a/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp
+++ b/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp
@@ -10315,7 +10315,6 @@ static bool areRuntimeChecksProfitable(GeneratedRTChecks &Checks,
// RtC < ScalarC * TC * (1 / X) ==> RtC * X / ScalarC < TC
double MinTC2 = RtC * 10 / ScalarC;
- dbgs() << ScalarC << " " << RtC << " " << VecCOverVF << "\n";
// Now pick the larger minimum. If it is not a multiple of VF, choose the
// next closest multiple of VF. This should partly compensate for ignoring
// the epilogue cost.
More information about the llvm-commits
mailing list