[llvm] r364449 - [IndVars] Kill a redundant bit of debug output
Philip Reames via llvm-commits
llvm-commits at lists.llvm.org
Wed Jun 26 10:19:09 PDT 2019
Author: reames
Date: Wed Jun 26 10:19:09 2019
New Revision: 364449
URL: http://llvm.org/viewvc/llvm-project?rev=364449&view=rev
Log:
[IndVars] Kill a redundant bit of debug output
Modified:
llvm/trunk/lib/Transforms/Scalar/IndVarSimplify.cpp
Modified: llvm/trunk/lib/Transforms/Scalar/IndVarSimplify.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Transforms/Scalar/IndVarSimplify.cpp?rev=364449&r1=364448&r2=364449&view=diff
==============================================================================
--- llvm/trunk/lib/Transforms/Scalar/IndVarSimplify.cpp (original)
+++ llvm/trunk/lib/Transforms/Scalar/IndVarSimplify.cpp Wed Jun 26 10:19:09 2019
@@ -2496,8 +2496,6 @@ linearFunctionTestReplace(Loop *L, Basic
else
NewLimit = Start + Count;
ExitCnt = ConstantInt::get(CmpIndVar->getType(), NewLimit);
-
- LLVM_DEBUG(dbgs() << " Widen RHS:\t" << *ExitCnt << "\n");
} else {
// We try to extend trip count first. If that doesn't work we truncate IV.
// Zext(trunc(IV)) == IV implies equivalence of the following two:
More information about the llvm-commits
mailing list