diff options
author | Andrew Trick <atrick@apple.com> | 2013-09-04 21:00:13 +0000 |
---|---|---|
committer | Andrew Trick <atrick@apple.com> | 2013-09-04 21:00:13 +0000 |
commit | 1ab16d9ecf171d7bfbd1af70467757afa61aacfd (patch) | |
tree | 964b2a15565bc7538c3fd6cfd8efd743369c3359 | |
parent | 66c3dfbf8c137ae51afe29fce817b9b071dde1c9 (diff) | |
download | bcm5719-llvm-1ab16d9ecf171d7bfbd1af70467757afa61aacfd.tar.gz bcm5719-llvm-1ab16d9ecf171d7bfbd1af70467757afa61aacfd.zip |
80 columns
llvm-svn: 189992
-rw-r--r-- | llvm/lib/CodeGen/MachineScheduler.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/MachineScheduler.cpp b/llvm/lib/CodeGen/MachineScheduler.cpp index 742d46afc84..ed5de5c5ffc 100644 --- a/llvm/lib/CodeGen/MachineScheduler.cpp +++ b/llvm/lib/CodeGen/MachineScheduler.cpp @@ -2680,7 +2680,7 @@ SUnit *ConvergingScheduler::pickNode(bool &IsTopNode) { CandPolicy NoPolicy; SchedCandidate TopCand(NoPolicy); pickNodeFromQueue(Top, DAG->getTopRPTracker(), TopCand); - assert(TopCand.Reason != NoCand && "failed to find the first candidate"); + assert(TopCand.Reason != NoCand && "failed to find a candidate"); SU = TopCand.SU; } IsTopNode = true; @@ -2691,7 +2691,7 @@ SUnit *ConvergingScheduler::pickNode(bool &IsTopNode) { CandPolicy NoPolicy; SchedCandidate BotCand(NoPolicy); pickNodeFromQueue(Bot, DAG->getBotRPTracker(), BotCand); - assert(BotCand.Reason != NoCand && "failed to find the first candidate"); + assert(BotCand.Reason != NoCand && "failed to find a candidate"); SU = BotCand.SU; } IsTopNode = false; |