Rename a variable to avoid a -Wshadow warning.
authorDan Gohman <gohman@apple.com>
Mon, 22 Feb 2010 04:04:24 +0000 (04:04 +0000)
committerDan Gohman <gohman@apple.com>
Mon, 22 Feb 2010 04:04:24 +0000 (04:04 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@96776 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Analysis/LoopInfo.h

index d5e4d51f7e711d4fc8405c60a423505bfd04eaa6..f792a7fae3ee0ca5f6bc246ea9c8bce096eb1962 100644 (file)
@@ -835,7 +835,7 @@ public:
             } else if (BlockLoop != Child) {
               LoopT *SubLoop = BlockLoop;
               // Reparent all of the blocks which used to belong to BlockLoops
-              for (unsigned j = 0, e = SubLoop->Blocks.size(); j != e; ++j)
+              for (unsigned j = 0, f = SubLoop->Blocks.size(); j != f; ++j)
                 ContainingLoops[SubLoop->Blocks[j]] = Child;
 
               // There is already a loop which contains this block, that means