diff options
| author | Lang Hames <lhames@gmail.com> | 2011-12-06 01:57:59 +0000 |
|---|---|---|
| committer | Lang Hames <lhames@gmail.com> | 2011-12-06 01:57:59 +0000 |
| commit | 52f24d7a326c7d5106b4fc3eace6281979860c01 (patch) | |
| tree | e4b5487ed8a13d127fc7b8251fa682d9eb305a25 /llvm/lib/CodeGen/RegAllocPBQP.cpp | |
| parent | 4e87e850a2055180a8497a4806559fa14a89778e (diff) | |
| download | bcm5719-llvm-52f24d7a326c7d5106b4fc3eace6281979860c01.tar.gz bcm5719-llvm-52f24d7a326c7d5106b4fc3eace6281979860c01.zip | |
Kill off the LoopSplitter. It's not being used or maintained.
llvm-svn: 145897
Diffstat (limited to 'llvm/lib/CodeGen/RegAllocPBQP.cpp')
| -rw-r--r-- | llvm/lib/CodeGen/RegAllocPBQP.cpp | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/llvm/lib/CodeGen/RegAllocPBQP.cpp b/llvm/lib/CodeGen/RegAllocPBQP.cpp index db35ce06150..a053cccc9e0 100644 --- a/llvm/lib/CodeGen/RegAllocPBQP.cpp +++ b/llvm/lib/CodeGen/RegAllocPBQP.cpp @@ -34,7 +34,6 @@ #include "LiveRangeEdit.h" #include "RenderMachineFunction.h" #include "Spiller.h" -#include "Splitter.h" #include "VirtRegMap.h" #include "RegisterCoalescer.h" #include "llvm/Analysis/AliasAnalysis.h" @@ -70,11 +69,6 @@ pbqpCoalescing("pbqp-coalescing", cl::desc("Attempt coalescing during PBQP register allocation."), cl::init(false), cl::Hidden); -static cl::opt<bool> -pbqpPreSplitting("pbqp-pre-splitting", - cl::desc("Pre-split before PBQP register allocation."), - cl::init(false), cl::Hidden); - namespace { /// @@ -95,7 +89,6 @@ public: initializeCalculateSpillWeightsPass(*PassRegistry::getPassRegistry()); initializeLiveStacksPass(*PassRegistry::getPassRegistry()); initializeMachineLoopInfoPass(*PassRegistry::getPassRegistry()); - initializeLoopSplitterPass(*PassRegistry::getPassRegistry()); initializeVirtRegMapPass(*PassRegistry::getPassRegistry()); initializeRenderMachineFunctionPass(*PassRegistry::getPassRegistry()); } @@ -463,8 +456,6 @@ void RegAllocPBQP::getAnalysisUsage(AnalysisUsage &au) const { au.addPreserved<MachineDominatorTree>(); au.addRequired<MachineLoopInfo>(); au.addPreserved<MachineLoopInfo>(); - if (pbqpPreSplitting) - au.addRequired<LoopSplitter>(); au.addRequired<VirtRegMap>(); au.addRequired<RenderMachineFunction>(); MachineFunctionPass::getAnalysisUsage(au); |

