mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-06 09:44:39 +00:00
Silence unused variable warnings from when assertions are disabled.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@157438 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
8ddd9d5b2b
commit
5402efa3dc
@ -1174,6 +1174,7 @@ SUnit *ConvergingScheduler::pickNode(bool &IsTopNode) {
|
||||
CandResult TopResult =
|
||||
pickNodeFromQueue(Top.Available, DAG->getTopRPTracker(), TopCand);
|
||||
assert(TopResult != NoCand && "failed to find the first candidate");
|
||||
(void)TopResult;
|
||||
SU = TopCand.SU;
|
||||
}
|
||||
IsTopNode = true;
|
||||
@ -1185,6 +1186,7 @@ SUnit *ConvergingScheduler::pickNode(bool &IsTopNode) {
|
||||
CandResult BotResult =
|
||||
pickNodeFromQueue(Bot.Available, DAG->getBotRPTracker(), BotCand);
|
||||
assert(BotResult != NoCand && "failed to find the first candidate");
|
||||
(void)BotResult;
|
||||
SU = BotCand.SU;
|
||||
}
|
||||
IsTopNode = false;
|
||||
|
Loading…
x
Reference in New Issue
Block a user