mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-06 21:05:51 +00:00
misched: bug in debug output.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@150043 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
b3aacdd358
commit
291411c7a1
@ -293,8 +293,10 @@ bool MachineScheduler::runOnMachineFunction(MachineFunction &mf) {
|
||||
continue;
|
||||
}
|
||||
DEBUG(dbgs() << "MachineScheduling " << MF->getFunction()->getName()
|
||||
<< ":BB#" << MBB->getNumber() << "\n From: " << *I << " To: "
|
||||
<< *RegionEnd << " Remaining: " << RemainingCount << "\n");
|
||||
<< ":BB#" << MBB->getNumber() << "\n From: " << *I << " To: ";
|
||||
if (RegionEnd != MBB->end()) dbgs() << *RegionEnd;
|
||||
else dbgs() << "End";
|
||||
dbgs() << " Remaining: " << RemainingCount << "\n");
|
||||
|
||||
// Inform ScheduleDAGInstrs of the region being scheduled. It calls back
|
||||
// to our Schedule() method.
|
||||
|
Loading…
Reference in New Issue
Block a user