diff options
author | Chris Lattner <sabre@nondot.org> | 2004-07-22 05:51:56 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-07-22 05:51:56 +0000 |
commit | 199edde70774ecb69922230fcde65acc51c21d89 (patch) | |
tree | 230226f6e52870c8fa3fe0c72c9ad822d7ecd0e0 /lib/CodeGen/TwoAddressInstructionPass.cpp | |
parent | 93c9587fbbbc0a6b6a64df9ea6184b7fdf8eba35 (diff) |
Remove extraneous punctuation
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15098 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/TwoAddressInstructionPass.cpp')
-rw-r--r-- | lib/CodeGen/TwoAddressInstructionPass.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/CodeGen/TwoAddressInstructionPass.cpp b/lib/CodeGen/TwoAddressInstructionPass.cpp index 7ca76e0f7a..9a6e5bc3f0 100644 --- a/lib/CodeGen/TwoAddressInstructionPass.cpp +++ b/lib/CodeGen/TwoAddressInstructionPass.cpp @@ -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); } |