From 5ace25b7881cd9961702ecba0d8615260f1518f7 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 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@313422 91177308-0d34-0410-b5e6-96231b3b80d8 --- tools/llvm-cov/CoverageSummaryInfo.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/llvm-cov/CoverageSummaryInfo.cpp b/tools/llvm-cov/CoverageSummaryInfo.cpp index 16ae8aaa449..b9705c09ab6 100644 --- a/tools/llvm-cov/CoverageSummaryInfo.cpp +++ b/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; } -- 2.40.0