From cb374e2861bb56ec9d4dda5b7bef395cfe12c763 Mon Sep 17 00:00:00 2001 From: Philip Reames Date: Wed, 26 Jun 2019 17:19:09 +0000 Subject: [PATCH] [IndVars] Kill a redundant bit of debug output git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@364449 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Transforms/Scalar/IndVarSimplify.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/Transforms/Scalar/IndVarSimplify.cpp b/lib/Transforms/Scalar/IndVarSimplify.cpp index 5c4b8f734a9..eb09e7883b9 100644 --- a/lib/Transforms/Scalar/IndVarSimplify.cpp +++ b/lib/Transforms/Scalar/IndVarSimplify.cpp @@ -2496,8 +2496,6 @@ linearFunctionTestReplace(Loop *L, BasicBlock *ExitingBB, 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: -- 2.50.1