diff options
author | Devang Patel <dpatel@apple.com> | 2008-09-05 21:55:33 +0000 |
---|---|---|
committer | Devang Patel <dpatel@apple.com> | 2008-09-05 21:55:33 +0000 |
commit | b877bd1a4142d5395b459d04229b8adc329fec2d (patch) | |
tree | acb755034dfa9be02d5d05900589c57b50415319 /lib/Transforms | |
parent | b862936a1469518e063c9e331c196a64e5715416 (diff) | |
download | external_llvm-b877bd1a4142d5395b459d04229b8adc329fec2d.zip external_llvm-b877bd1a4142d5395b459d04229b8adc329fec2d.tar.gz external_llvm-b877bd1a4142d5395b459d04229b8adc329fec2d.tar.bz2 |
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.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/Transforms/Scalar/IndVarSimplify.cpp b/lib/Transforms/Scalar/IndVarSimplify.cpp index 3d29fd6..bfda9cd 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); |