mirror of
https://github.com/RPCSX/llvm.git
synced 2024-11-24 04:09:45 +00:00
[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 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@294257 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
769338ac57
commit
0887cb0d09
@ -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
Block a user