[llvm] r196585 - comment grammar

Andrew Trick atrick at apple.com
Fri Dec 6 09:19:20 PST 2013


Author: atrick
Date: Fri Dec  6 11:19:20 2013
New Revision: 196585

URL: http://llvm.org/viewvc/llvm-project?rev=196585&view=rev
Log:
comment grammar

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=196585&r1=196584&r2=196585&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/MachineScheduler.cpp (original)
+++ llvm/trunk/lib/CodeGen/MachineScheduler.cpp Fri Dec  6 11:19:20 2013
@@ -2177,7 +2177,7 @@ void GenericScheduler::SchedBoundary::bu
   unsigned IncMOps = SchedModel->getNumMicroOps(SU->getInstr());
   assert(
       (CurrMOps == 0 || (CurrMOps + IncMOps) <= SchedModel->getIssueWidth()) &&
-      "Cannot schedule this instructions MicroOps in the current cycle.");
+      "Cannot schedule this instruction's MicroOps in the current cycle.");
 
   unsigned ReadyCycle = (isTop() ? SU->TopReadyCycle : SU->BotReadyCycle);
   DEBUG(dbgs() << "  Ready @" << ReadyCycle << "c\n");





More information about the llvm-commits mailing list