diff options
Diffstat (limited to 'llvm/lib/CodeGen/Splitter.cpp')
| -rw-r--r-- | llvm/lib/CodeGen/Splitter.cpp | 8 | 
1 files changed, 7 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/Splitter.cpp b/llvm/lib/CodeGen/Splitter.cpp index f52eaea..08aee82 100644 --- a/llvm/lib/CodeGen/Splitter.cpp +++ b/llvm/lib/CodeGen/Splitter.cpp @@ -29,7 +29,13 @@  using namespace llvm;  char LoopSplitter::ID = 0; -INITIALIZE_PASS(LoopSplitter, "loop-splitting", +INITIALIZE_PASS_BEGIN(LoopSplitter, "loop-splitting", +                "Split virtual regists across loop boundaries.", false, false) +INITIALIZE_PASS_DEPENDENCY(MachineDominatorTree) +INITIALIZE_PASS_DEPENDENCY(MachineLoopInfo) +INITIALIZE_PASS_DEPENDENCY(SlotIndexes) +INITIALIZE_PASS_DEPENDENCY(LiveIntervals) +INITIALIZE_PASS_END(LoopSplitter, "loop-splitting",                  "Split virtual regists across loop boundaries.", false, false)  namespace llvm {  | 
