Rename a variable to make MSVC happy.
authorBenjamin Kramer <benny.kra@googlemail.com>
Wed, 5 Aug 2009 16:08:58 +0000 (16:08 +0000)
committerBenjamin Kramer <benny.kra@googlemail.com>
Wed, 5 Aug 2009 16:08:58 +0000 (16:08 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@78202 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/SimpleRegisterCoalescing.cpp

index 08e0bcf85b664ce7af8810ae6cdb2789f6e1f925..b57bbc2ca5ebd15fd9a4393e487e326060552a06 100644 (file)
@@ -808,9 +808,9 @@ void SimpleRegisterCoalescing::RemoveUnnecessaryKills(unsigned Reg,
       continue;
     MachineInstr *UseMI = UseMO.getParent();
     unsigned UseIdx = li_->getUseIndex(li_->getInstructionIndex(UseMI));
-    const LiveRange *UI = LI.getLiveRangeContaining(UseIdx);
-    if (!UI || !LI.isKill(UI->valno, UseIdx+1)) {
-      if (UI->valno->def != UseIdx+1) {
+    const LiveRange *LR = LI.getLiveRangeContaining(UseIdx);
+    if (!LR || !LI.isKill(LR->valno, UseIdx+1)) {
+      if (LR->valno->def != UseIdx+1) {
         // Interesting problem. After coalescing reg1027's def and kill are both
         // at the same point:  %reg1027,0.000000e+00 = [56,814:0)  0@70-(814)
         //