Remove extraneous punctuation
authorChris Lattner <sabre@nondot.org>
Thu, 22 Jul 2004 05:51:56 +0000 (05:51 +0000)
committerChris Lattner <sabre@nondot.org>
Thu, 22 Jul 2004 05:51:56 +0000 (05:51 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15098 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/TwoAddressInstructionPass.cpp

index 7ca76e0f7ae0dbaeb50d3f51f45c351592a8e2a5..9a6e5bc3f0761977d9d013fe80a56471140f78fb 100644 (file)
@@ -146,10 +146,10 @@ bool TwoAddressInstructionPass::runOnMachineFunction(MachineFunction &MF) {
                     varInfo.DefInst = prevMi;
 
                     // update live variables for regB
-                    if (LV->removeVirtualRegisterKilled(regB, &*mbbi, mi))
+                    if (LV->removeVirtualRegisterKilled(regB, mbbi, mi))
                         LV->addVirtualRegisterKilled(regB, prevMi);
 
-                    if (LV->removeVirtualRegisterDead(regB, &*mbbi, mi))
+                    if (LV->removeVirtualRegisterDead(regB, mbbi, mi))
                         LV->addVirtualRegisterDead(regB, prevMi);
                 }