Left out the NDEBUG in the previous checkin.

llvm-svn: 211867
This commit is contained in:
Andrew Trick 2014-06-27 05:09:36 +00:00
parent 4b68a05f3d
commit 040c0da578
1 changed files with 2 additions and 0 deletions
llvm/lib/CodeGen

View File

@ -1689,7 +1689,9 @@ bool SchedBoundary::checkHazard(SUnit *SU) {
PE = SchedModel->getWriteProcResEnd(SC); PI != PE; ++PI) {
unsigned NRCycle = getNextResourceCycle(PI->ProcResourceIdx, PI->Cycles);
if (NRCycle > CurrCycle) {
#ifndef NDEBUG
MaxObservedStall = std::max(NRCycle - CurrCycle, MaxObservedStall);
#endif
DEBUG(dbgs() << " SU(" << SU->NodeNum << ") "
<< SchedModel->getResourceName(PI->ProcResourceIdx)
<< "=" << NRCycle << "c\n");