[llvm] r251609 - MachineScheduler: Fix typo in debug message
Matthias Braun via llvm-commits
llvm-commits at lists.llvm.org
Wed Oct 28 20:57:28 PDT 2015
Author: matze
Date: Wed Oct 28 22:57:28 2015
New Revision: 251609
URL: http://llvm.org/viewvc/llvm-project?rev=251609&view=rev
Log:
MachineScheduler: Fix typo in debug message
Maybe I just missed the humor there ;-)
Modified:
llvm/trunk/lib/CodeGen/MachineScheduler.cpp
Modified: llvm/trunk/lib/CodeGen/MachineScheduler.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/MachineScheduler.cpp?rev=251609&r1=251608&r2=251609&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/MachineScheduler.cpp (original)
+++ llvm/trunk/lib/CodeGen/MachineScheduler.cpp Wed Oct 28 22:57:28 2015
@@ -320,7 +320,7 @@ bool MachineScheduler::runOnMachineFunct
} 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;
More information about the llvm-commits
mailing list