diff options
author | Andrew Trick <atrick@apple.com> | 2013-12-06 17:19:20 +0000 |
---|---|---|
committer | Andrew Trick <atrick@apple.com> | 2013-12-06 17:19:20 +0000 |
commit | f7760a24e5eba1bbaa0636ee24726f911aeb3647 (patch) | |
tree | fb4b7860089b44ee8f0ca5865efaf44d6a43e52c /llvm/lib/CodeGen/MachineScheduler.cpp | |
parent | 9e264854120eb1d93b9a86a66f2af38f9ed90645 (diff) | |
download | llvm-f7760a24e5eba1bbaa0636ee24726f911aeb3647.zip llvm-f7760a24e5eba1bbaa0636ee24726f911aeb3647.tar.gz llvm-f7760a24e5eba1bbaa0636ee24726f911aeb3647.tar.bz2 |
comment grammar
llvm-svn: 196585
Diffstat (limited to 'llvm/lib/CodeGen/MachineScheduler.cpp')
-rw-r--r-- | llvm/lib/CodeGen/MachineScheduler.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/MachineScheduler.cpp b/llvm/lib/CodeGen/MachineScheduler.cpp index 1503596..de1968f 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"); |