summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Trick <atrick@apple.com>2012-03-21 04:12:12 +0000
committerAndrew Trick <atrick@apple.com>2012-03-21 04:12:12 +0000
commitaad37f1925621cb1f9f2bb2c899b517bf1df344a (patch)
tree190ea5b4628fbc6f1db1aa14da3494203a1ef111
parent1ce062fe567a08678d20149781c5e308e03d7d83 (diff)
misched: trace LiveIntervals after scheduling.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@153161 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/CodeGen/MachineScheduler.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/CodeGen/MachineScheduler.cpp b/lib/CodeGen/MachineScheduler.cpp
index 57ae6dc02a4..364a2442759 100644
--- a/lib/CodeGen/MachineScheduler.cpp
+++ b/lib/CodeGen/MachineScheduler.cpp
@@ -227,6 +227,7 @@ bool MachineScheduler::runOnMachineFunction(MachineFunction &mf) {
assert(RemainingCount == 0 && "Instruction count mismatch!");
Scheduler->finishBlock();
}
+ DEBUG(LIS->print(dbgs()));
return true;
}