diff options
author | Andrew Trick <atrick@apple.com> | 2012-04-01 07:24:23 +0000 |
---|---|---|
committer | Andrew Trick <atrick@apple.com> | 2012-04-01 07:24:23 +0000 |
commit | 779b32a44e3ca47bb30b799bdf42ef4a6aa776ab (patch) | |
tree | b865bb8be1495eccdf9f82aa97b054350c7edb59 /llvm/lib/CodeGen/MachineScheduler.cpp | |
parent | f5becf617fed46365ad333435897a96aefd0b174 (diff) | |
download | bcm5719-llvm-779b32a44e3ca47bb30b799bdf42ef4a6aa776ab.tar.gz bcm5719-llvm-779b32a44e3ca47bb30b799bdf42ef4a6aa776ab.zip |
misched: Add finalizeScheduler to complete the target interface.
llvm-svn: 153827
Diffstat (limited to 'llvm/lib/CodeGen/MachineScheduler.cpp')
-rw-r--r-- | llvm/lib/CodeGen/MachineScheduler.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/CodeGen/MachineScheduler.cpp b/llvm/lib/CodeGen/MachineScheduler.cpp index 364a2442759..1d3241b8cc6 100644 --- a/llvm/lib/CodeGen/MachineScheduler.cpp +++ b/llvm/lib/CodeGen/MachineScheduler.cpp @@ -227,6 +227,7 @@ bool MachineScheduler::runOnMachineFunction(MachineFunction &mf) { assert(RemainingCount == 0 && "Instruction count mismatch!"); Scheduler->finishBlock(); } + Scheduler->finalizeSchedule(); DEBUG(LIS->print(dbgs())); return true; } |