diff options
author | Lang Hames <lhames@gmail.com> | 2009-11-20 00:53:30 +0000 |
---|---|---|
committer | Lang Hames <lhames@gmail.com> | 2009-11-20 00:53:30 +0000 |
commit | 8783e401a3ad187dcd0f306153f9339f7270621d (patch) | |
tree | 0f802bd177e5c0328dee84cf8c010588513fed3e /lib/CodeGen/RegAllocLinearScan.cpp | |
parent | 76c638a14c1e2927e5e20040b347bc3d7ae8fb82 (diff) |
Removed references to LiveStacks from Spiller.* . They're no longer needed.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@89422 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/RegAllocLinearScan.cpp')
-rw-r--r-- | lib/CodeGen/RegAllocLinearScan.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/RegAllocLinearScan.cpp b/lib/CodeGen/RegAllocLinearScan.cpp index 4d6b6891f0..708ecbe84a 100644 --- a/lib/CodeGen/RegAllocLinearScan.cpp +++ b/lib/CodeGen/RegAllocLinearScan.cpp @@ -475,7 +475,7 @@ bool RALinScan::runOnMachineFunction(MachineFunction &fn) { vrm_ = &getAnalysis<VirtRegMap>(); if (!rewriter_.get()) rewriter_.reset(createVirtRegRewriter()); - spiller_.reset(createSpiller(mf_, li_, ls_, loopInfo, vrm_)); + spiller_.reset(createSpiller(mf_, li_, loopInfo, vrm_)); initIntervalSets(); |