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 | c6e434573cf7fd6355a33a13b4db6aa5f56c4ea5 (patch) | |
tree | 457f244c824ed86c20532ea3c607a87c9cfacb39 /llvm/lib/CodeGen/RegAllocLinearScan.cpp | |
parent | 91449224e8f627ad842534b68980b69159593010 (diff) | |
download | bcm5719-llvm-c6e434573cf7fd6355a33a13b4db6aa5f56c4ea5.tar.gz bcm5719-llvm-c6e434573cf7fd6355a33a13b4db6aa5f56c4ea5.zip |
Removed references to LiveStacks from Spiller.* . They're no longer needed.
llvm-svn: 89422
Diffstat (limited to 'llvm/lib/CodeGen/RegAllocLinearScan.cpp')
-rw-r--r-- | llvm/lib/CodeGen/RegAllocLinearScan.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/RegAllocLinearScan.cpp b/llvm/lib/CodeGen/RegAllocLinearScan.cpp index 4d6b6891f0d..708ecbe84af 100644 --- a/llvm/lib/CodeGen/RegAllocLinearScan.cpp +++ b/llvm/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(); |