1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 03:02:36 +01:00

MachineScheduler: Fix typo in debug message

Maybe I just missed the humor there ;-)

llvm-svn: 251609
This commit is contained in:
Matthias Braun 2015-10-29 03:57:28 +00:00
parent 2ae11dd8a3
commit a02d83e17c

View File

@ -320,7 +320,7 @@ bool MachineScheduler::runOnMachineFunction(MachineFunction &mf) {
} else if (!mf.getSubtarget().enableMachineScheduler())
return false;
DEBUG(dbgs() << "Before MISsched:\n"; mf.print(dbgs()));
DEBUG(dbgs() << "Before MISched:\n"; mf.print(dbgs()));
// Initialize the context of the pass.
MF = &mf;