diff options
author | Owen Anderson <resistor@mac.com> | 2008-01-15 22:02:46 +0000 |
---|---|---|
committer | Owen Anderson <resistor@mac.com> | 2008-01-15 22:02:46 +0000 |
commit | 7047dd4d227b5fb2e5ae0cb2e7d5de1d0098ad60 (patch) | |
tree | 2edf5577e147196bc82bcc9d4693f5b890e9155e /lib/CodeGen/TwoAddressInstructionPass.cpp | |
parent | da68d30d24f3f25444793c6d8c3c5a614e523eaa (diff) |
Remove DefInst from LiveVariables::VarInfo. Use the facilities on MachineRegisterInfo instead.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@46016 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/TwoAddressInstructionPass.cpp')
-rw-r--r-- | lib/CodeGen/TwoAddressInstructionPass.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/CodeGen/TwoAddressInstructionPass.cpp b/lib/CodeGen/TwoAddressInstructionPass.cpp index dec401c55d..060f6a6794 100644 --- a/lib/CodeGen/TwoAddressInstructionPass.cpp +++ b/lib/CodeGen/TwoAddressInstructionPass.cpp @@ -199,10 +199,6 @@ bool TwoAddressInstructionPass::runOnMachineFunction(MachineFunction &MF) { MachineBasicBlock::iterator prevMi = prior(mi); DOUT << "\t\tprepend:\t"; DEBUG(prevMi->print(*cerr.stream(), &TM)); - // Update live variables for regA - LiveVariables::VarInfo& varInfo = LV.getVarInfo(regA); - varInfo.DefInst = prevMi; - // update live variables for regB LiveVariables::VarInfo& varInfoB = LV.getVarInfo(regB); // regB is used in this BB. |