From 85d8f0cba8f763a90617293c46d423376d72b370 Mon Sep 17 00:00:00 2001 From: Kaelyn Uhrain Date: Thu, 24 May 2012 23:37:49 +0000 Subject: Silence unused variable warnings from when assertions are disabled. llvm-svn: 157438 --- llvm/lib/CodeGen/MachineScheduler.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'llvm/lib/CodeGen/MachineScheduler.cpp') diff --git a/llvm/lib/CodeGen/MachineScheduler.cpp b/llvm/lib/CodeGen/MachineScheduler.cpp index 662b16f..4c12c0e 100644 --- a/llvm/lib/CodeGen/MachineScheduler.cpp +++ b/llvm/lib/CodeGen/MachineScheduler.cpp @@ -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; -- cgit v1.1