From f7760a24e5eba1bbaa0636ee24726f911aeb3647 Mon Sep 17 00:00:00 2001 From: Andrew Trick Date: Fri, 6 Dec 2013 17:19:20 +0000 Subject: [PATCH] comment grammar llvm-svn: 196585 --- llvm/lib/CodeGen/MachineScheduler.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/lib/CodeGen/MachineScheduler.cpp b/llvm/lib/CodeGen/MachineScheduler.cpp index 15035967be32..de1968f48b0d 100644 --- a/llvm/lib/CodeGen/MachineScheduler.cpp +++ b/llvm/lib/CodeGen/MachineScheduler.cpp @@ -2177,7 +2177,7 @@ void GenericScheduler::SchedBoundary::bumpNode(SUnit *SU) { 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");