From c008152a39a73188e0b21d25f225859d76e171ea Mon Sep 17 00:00:00 2001 From: Andrew Trick Date: Fri, 6 Dec 2013 17:19:20 +0000 Subject: [PATCH] comment grammar git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@196585 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/CodeGen/MachineScheduler.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/CodeGen/MachineScheduler.cpp b/lib/CodeGen/MachineScheduler.cpp index 15035967be3..de1968f48b0 100644 --- a/lib/CodeGen/MachineScheduler.cpp +++ b/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"); -- 2.34.1