Bad choice of variable name.
authorEvan Cheng <evan.cheng@apple.com>
Wed, 10 Oct 2007 00:11:40 +0000 (00:11 +0000)
committerEvan Cheng <evan.cheng@apple.com>
Wed, 10 Oct 2007 00:11:40 +0000 (00:11 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@42821 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/SimpleRegisterCoalescing.cpp

index 4c1a96dd7d1eed985d339c3003f9d367c64a82fc..59e9e4501a28edf622a853eb32f86fc4770abb21 100644 (file)
@@ -861,8 +861,8 @@ void SimpleRegisterCoalescing::CopyCoalesceInMBB(MachineBasicBlock *MBB,
     unsigned SrcReg, DstReg;
     if (!tii_->isMoveInstr(*Inst, SrcReg, DstReg)) continue;
     
-    bool Success = JoinCopy(Inst, SrcReg, DstReg, PhysOnly);
-    if (TryAgain && !Success)
+    bool Done = JoinCopy(Inst, SrcReg, DstReg, PhysOnly);
+    if (TryAgain && !Done)
       TryAgain->push_back(getCopyRec(Inst, SrcReg, DstReg));
   }
 }