diff options
author | Chris Lattner <sabre@nondot.org> | 2006-05-01 21:16:03 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-05-01 21:16:03 +0000 |
commit | 35f2705e3de4600c3621b883eed9b22e4607ddf4 (patch) | |
tree | 360b4e46bdc22b6b9d278e07848cbcd3a2d935e7 /lib/CodeGen/LiveIntervalAnalysis.cpp | |
parent | a1e8a80b96d02c8667021049e7fba9050658f39b (diff) |
Remove previous patch, which wasn't quite right.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28039 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/LiveIntervalAnalysis.cpp')
-rw-r--r-- | lib/CodeGen/LiveIntervalAnalysis.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/CodeGen/LiveIntervalAnalysis.cpp b/lib/CodeGen/LiveIntervalAnalysis.cpp index c6dc2b92d4..8c28c97b0a 100644 --- a/lib/CodeGen/LiveIntervalAnalysis.cpp +++ b/lib/CodeGen/LiveIntervalAnalysis.cpp @@ -272,9 +272,7 @@ addIntervalsForSpills(const LiveInterval &li, VirtRegMap &vrm, int slot) { if (lv_) lv_->instructionChanged(MI, fmi); MachineBasicBlock &MBB = *MI->getParent(); - bool LiveOut = li.liveAt(getInstructionIndex(&MBB.back()) + - InstrSlots::NUM); - vrm.virtFolded(li.reg, MI, i, fmi, LiveOut); + vrm.virtFolded(li.reg, MI, i, fmi); mi2iMap_.erase(MI); i2miMap_[index/InstrSlots::NUM] = fmi; mi2iMap_[fmi] = index; |