From bcc11d2a712b2eb432447ef585be0a33ca58ee2a Mon Sep 17 00:00:00 2001 From: Devang Patel Date: Fri, 5 Sep 2008 21:55:33 +0000 Subject: [PATCH] Remove unused map. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@55861 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Transforms/Scalar/IndVarSimplify.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/Transforms/Scalar/IndVarSimplify.cpp b/lib/Transforms/Scalar/IndVarSimplify.cpp index 3d29fd68637..bfda9cda170 100644 --- a/lib/Transforms/Scalar/IndVarSimplify.cpp +++ b/lib/Transforms/Scalar/IndVarSimplify.cpp @@ -555,7 +555,6 @@ bool IndVarSimplify::runOnLoop(Loop *L, LPPassManager &LPM) { // Rewrite all induction variables in terms of the canonical induction // variable. - std::map InsertedSizes; while (!IndVars.empty()) { PHINode *PN = IndVars.back().first; Value *NewVal = Rewriter.expandCodeFor(IndVars.back().second, InsertPt);