forked from OSchip/llvm-project
[AMDGPU] Fix GCNSchedStrategy.cpp debug output
There is typo in the debug output: top and bottom candidates are switched. Differential Revision: https://reviews.llvm.org/D29608 llvm-svn: 294257
This commit is contained in:
parent
35a7838954
commit
99be1aff31
|
@ -225,9 +225,9 @@ SUnit *GCNMaxOccupancySchedStrategy::pickNodeBidirectional(bool &IsTopNode) {
|
|||
// Pick best from BotCand and TopCand.
|
||||
DEBUG(
|
||||
dbgs() << "Top Cand: ";
|
||||
traceCandidate(BotCand);
|
||||
dbgs() << "Bot Cand: ";
|
||||
traceCandidate(TopCand);
|
||||
dbgs() << "Bot Cand: ";
|
||||
traceCandidate(BotCand);
|
||||
);
|
||||
SchedCandidate Cand;
|
||||
if (TopCand.Reason == BotCand.Reason) {
|
||||
|
|
Loading…
Reference in New Issue