diff options
Diffstat (limited to 'llvm/lib')
| -rw-r--r-- | llvm/lib/Transforms/Instrumentation/PGOInstrumentation.cpp | 12 | 
1 files changed, 6 insertions, 6 deletions
| diff --git a/llvm/lib/Transforms/Instrumentation/PGOInstrumentation.cpp b/llvm/lib/Transforms/Instrumentation/PGOInstrumentation.cpp index 87970e66a97..a21409f0110 100644 --- a/llvm/lib/Transforms/Instrumentation/PGOInstrumentation.cpp +++ b/llvm/lib/Transforms/Instrumentation/PGOInstrumentation.cpp @@ -691,16 +691,16 @@ void PGOUseFunc::populateCounters() {    }    DEBUG(dbgs() << "Populate counts in " << NumPasses << " passes.\n"); +#ifndef NDEBUG    // Assert every BB has a valid counter. +  for (auto &BB : F) +    assert(getBBInfo(&BB).CountValid && "BB count is not valid"); +#endif    uint64_t FuncEntryCount = getBBInfo(&*F.begin()).CountValue;    F.setEntryCount(FuncEntryCount);    uint64_t FuncMaxCount = FuncEntryCount; -  for (auto &BB : F) { -    assert(getBBInfo(&BB).CountValid && "BB count is not valid"); -    uint64_t Count = getBBInfo(&BB).CountValue; -    if (Count > FuncMaxCount) -      FuncMaxCount = Count; -  } +  for (auto &BB : F) +    FuncMaxCount = std::max(FuncMaxCount, getBBInfo(&BB).CountValue);    markFunctionAttributes(FuncEntryCount, FuncMaxCount);    DEBUG(FuncInfo.dumpInfo("after reading profile.")); | 

