1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 03:33:20 +01:00

Remove unused map.

llvm-svn: 55861
This commit is contained in:
Devang Patel 2008-09-05 21:55:33 +00:00
parent 79477af98a
commit 4148488e49

View File

@ -555,7 +555,6 @@ bool IndVarSimplify::runOnLoop(Loop *L, LPPassManager &LPM) {
// Rewrite all induction variables in terms of the canonical induction // Rewrite all induction variables in terms of the canonical induction
// variable. // variable.
std::map<unsigned, Value*> InsertedSizes;
while (!IndVars.empty()) { while (!IndVars.empty()) {
PHINode *PN = IndVars.back().first; PHINode *PN = IndVars.back().first;
Value *NewVal = Rewriter.expandCodeFor(IndVars.back().second, InsertPt); Value *NewVal = Rewriter.expandCodeFor(IndVars.back().second, InsertPt);