summaryrefslogtreecommitdiff
path: root/lib/Transforms
diff options
context:
space:
mode:
authorDevang Patel <dpatel@apple.com>2008-09-05 21:55:33 +0000
committerDevang Patel <dpatel@apple.com>2008-09-05 21:55:33 +0000
commitbcc11d2a712b2eb432447ef585be0a33ca58ee2a (patch)
treeacb755034dfa9be02d5d05900589c57b50415319 /lib/Transforms
parent54d9f98a565d7ff2bb103b9ffc2278de844e47d0 (diff)
downloadllvm-bcc11d2a712b2eb432447ef585be0a33ca58ee2a.tar.gz
llvm-bcc11d2a712b2eb432447ef585be0a33ca58ee2a.tar.bz2
llvm-bcc11d2a712b2eb432447ef585be0a33ca58ee2a.tar.xz
Remove unused map.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@55861 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms')
-rw-r--r--lib/Transforms/Scalar/IndVarSimplify.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/Transforms/Scalar/IndVarSimplify.cpp b/lib/Transforms/Scalar/IndVarSimplify.cpp
index 3d29fd6863..bfda9cda17 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<unsigned, Value*> InsertedSizes;
while (!IndVars.empty()) {
PHINode *PN = IndVars.back().first;
Value *NewVal = Rewriter.expandCodeFor(IndVars.back().second, InsertPt);