Left out the NDEBUG in the previous checkin.
authorAndrew Trick <atrick@apple.com>
Fri, 27 Jun 2014 05:09:36 +0000 (05:09 +0000)
committerAndrew Trick <atrick@apple.com>
Fri, 27 Jun 2014 05:09:36 +0000 (05:09 +0000)
llvm-svn: 211867

llvm/lib/CodeGen/MachineScheduler.cpp

index b37f689..8365330 100644 (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");