diff options
author | Lang Hames <lhames@gmail.com> | 2009-05-06 02:36:21 +0000 |
---|---|---|
committer | Lang Hames <lhames@gmail.com> | 2009-05-06 02:36:21 +0000 |
commit | ab68cf24bb17eebcfd14bf851ade359f670e4e63 (patch) | |
tree | 8a6dd2c04cbe784ad3890ac2abaf2ef406a2779e /llvm/lib/CodeGen/RegAllocPBQP.cpp | |
parent | 5e051f9a86ebd909ef55d5417d9463a3425f6038 (diff) | |
download | bcm5719-llvm-ab68cf24bb17eebcfd14bf851ade359f670e4e63.tar.gz bcm5719-llvm-ab68cf24bb17eebcfd14bf851ade359f670e4e63.zip |
Renamed Spiller classes (plus uses and related files) to VirtRegRewriter.
llvm-svn: 71057
Diffstat (limited to 'llvm/lib/CodeGen/RegAllocPBQP.cpp')
-rw-r--r-- | llvm/lib/CodeGen/RegAllocPBQP.cpp | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/llvm/lib/CodeGen/RegAllocPBQP.cpp b/llvm/lib/CodeGen/RegAllocPBQP.cpp index 8cdf4fa0de6..9b2c92c13e5 100644 --- a/llvm/lib/CodeGen/RegAllocPBQP.cpp +++ b/llvm/lib/CodeGen/RegAllocPBQP.cpp @@ -33,7 +33,7 @@ #include "PBQP.h" #include "VirtRegMap.h" -#include "Spiller.h" +#include "VirtRegRewriter.h" #include "llvm/CodeGen/LiveIntervalAnalysis.h" #include "llvm/CodeGen/LiveStackAnalysis.h" #include "llvm/CodeGen/MachineFunctionPass.h" @@ -850,9 +850,10 @@ bool PBQPRegAlloc::runOnMachineFunction(MachineFunction &MF) { DOUT << "Post alloc VirtRegMap:\n" << *vrm << "\n"; - // Run spiller - std::auto_ptr<Spiller> spiller(createSpiller()); - spiller->runOnMachineFunction(*mf, *vrm, lis); + // Run rewriter + std::auto_ptr<VirtRegRewriter> rewriter(createVirtRegRewriter()); + + rewriter->runOnMachineFunction(*mf, *vrm, lis); return true; } |