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 | d7c28c8c5c1de49d0b0413f6ff4fada2b80c1ec0 (patch) | |
tree | 0f802bd177e5c0328dee84cf8c010588513fed3e /lib/CodeGen/RegAllocLinearScan.cpp | |
parent | 1e927d7b1f0097ad715d2a4375b2bd7e40dd3c89 (diff) | |
download | external_llvm-d7c28c8c5c1de49d0b0413f6ff4fada2b80c1ec0.zip external_llvm-d7c28c8c5c1de49d0b0413f6ff4fada2b80c1ec0.tar.gz external_llvm-d7c28c8c5c1de49d0b0413f6ff4fada2b80c1ec0.tar.bz2 |
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 4d6b689..708ecbe 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(); |