From 7c779bfee319dc2a9ea2de3a79af61dca41800d9 Mon Sep 17 00:00:00 2001 From: Vedant Kumar Date: Fri, 15 Sep 2017 23:14:22 +0000 Subject: [PATCH] [llvm-cov] Fix a bot failure due to r313417 There's a type mismatch issue with the arguments to a call to std::min introduced in r313417. http://lab.llvm.org:8011/builders/clang-cmake-thumbv7-a15/builds/11174 llvm-svn: 313422 --- llvm/tools/llvm-cov/CoverageSummaryInfo.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/llvm/tools/llvm-cov/CoverageSummaryInfo.cpp b/llvm/tools/llvm-cov/CoverageSummaryInfo.cpp index 16ae8aaa4493..b9705c09ab62 100644 --- a/llvm/tools/llvm-cov/CoverageSummaryInfo.cpp +++ b/llvm/tools/llvm-cov/CoverageSummaryInfo.cpp @@ -68,9 +68,9 @@ FunctionCoverageSummary::get(const coverage::FunctionRecord &Function) { for (unsigned I = CR.LineStart; I <= CR.LineEnd; ++I) ExecutionCounts[I - LineStart] = ExecutionCount; } - unsigned UncoveredLines = - std::min(std::count(ExecutionCounts.begin(), ExecutionCounts.end(), 0), - (long)LinesNotSkipped); + unsigned UncoveredLines = std::min( + (unsigned)std::count(ExecutionCounts.begin(), ExecutionCounts.end(), 0), + (unsigned)LinesNotSkipped); CoveredLines += LinesNotSkipped - UncoveredLines; NumLines += LinesNotSkipped; }