We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb193db commit bec8dffCopy full SHA for bec8dff
llvm/lib/Target/AMDGPU/R600MachineCFGStructurizer.cpp
@@ -741,6 +741,7 @@ bool R600MachineCFGStructurizer::run() {
741
++NumIter;
742
LLVM_DEBUG(dbgs() << "numIter = " << NumIter
743
<< ", numRemaintedBlk = " << NumRemainedBlk << "\n";);
744
+ (void)NumIter;
745
746
SmallVectorImpl<MachineBasicBlock *>::const_iterator It =
747
OrderedBlks.begin();
@@ -781,6 +782,7 @@ bool R600MachineCFGStructurizer::run() {
781
782
LLVM_DEBUG(dbgs() << "Can't reduce SCC " << getSCCNum(MBB)
783
<< ", sccNumIter = " << SccNumIter;
784
dbgs() << "doesn't make any progress\n";);
785
+ (void)SccNumIter;
786
ContNextScc = true;
787
} else if (sccRemainedNumBlk != 1 && sccRemainedNumBlk < SccNumBlk) {
788
SccNumBlk = sccRemainedNumBlk;
0 commit comments