mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-15 07:34:33 +00:00
80 columns
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@189992 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
16bb45c5c8
commit
85d7f0be78
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user