Remove extraneous punctuation

llvm-svn: 15098
This commit is contained in:
Chris Lattner 2004-07-22 05:51:56 +00:00
parent 51f7c9e56d
commit f2b976bdd5
1 changed files with 2 additions and 2 deletions

View 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);
}