diff options
author | Dan Gohman <gohman@apple.com> | 2010-05-20 16:41:11 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2010-05-20 16:41:11 +0000 |
commit | 24a7c3082288755bef6a8124e384ff8b52d31e49 (patch) | |
tree | 4f20dbd084235e30902cbb6749d9f66185d5cfac | |
parent | 26c1e56f13b08ce3233b8f2e1c3e208af7b1ad1f (diff) |
Rename a variable to avoid shadowing.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@104234 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Transforms/Scalar/LoopStrengthReduce.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/Transforms/Scalar/LoopStrengthReduce.cpp b/lib/Transforms/Scalar/LoopStrengthReduce.cpp index f648560e48..15751aaa71 100644 --- a/lib/Transforms/Scalar/LoopStrengthReduce.cpp +++ b/lib/Transforms/Scalar/LoopStrengthReduce.cpp @@ -2870,8 +2870,9 @@ void LSRInstance::NarrowSearchSpaceUsingHeuristics() { for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) { LSRUse &LU = Uses[LUIdx]; - for (size_t i = 0, e = LU.Formulae.size(); i != e; ++i) { - Formula &F = LU.Formulae[i]; + for (size_t FIdx = 0, NumForms = LU.Formulae.size(); + FIdx != NumForms; ++FIdx) { + Formula &F = LU.Formulae[FIdx]; if (F.AM.BaseOffs != 0 && F.AM.Scale == 0) { if (LSRUse *LUThatHas = FindUseWithSimilarFormula(F, LU)) { if (reconcileNewOffset(*LUThatHas, F.AM.BaseOffs, |