From 722f58c6b338284cd6a9f88543b7f7984b3c2da9 Mon Sep 17 00:00:00 2001 From: NAKAMURA Takumi Date: Thu, 19 Dec 2013 08:46:28 +0000 Subject: [PATCH] GCOV.cpp: Fix format strings, %lf. Don't use %lf to double. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@197663 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/IR/GCOV.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/IR/GCOV.cpp b/lib/IR/GCOV.cpp index 140d259c2a6..e39842c2fdd 100644 --- a/lib/IR/GCOV.cpp +++ b/lib/IR/GCOV.cpp @@ -636,15 +636,15 @@ void FileInfo::printUncondBranchInfo(raw_fd_ostream &OS, uint32_t &EdgeNo, // printCoverage - Print generic coverage info used by both printFuncCoverage // and printFileCoverage. void FileInfo::printCoverage(const GCOVCoverage &Coverage) const { - outs() << format("Lines executed:%.2lf%% of %u\n", + outs() << format("Lines executed:%.2f%% of %u\n", double(Coverage.LinesExec)*100/Coverage.LogicalLines, Coverage.LogicalLines); if (Options.BranchInfo) { if (Coverage.Branches) { - outs() << format("Branches executed:%.2lf%% of %u\n", + outs() << format("Branches executed:%.2f%% of %u\n", double(Coverage.BranchesExec)*100/Coverage.Branches, Coverage.Branches); - outs() << format("Taken at least once:%.2lf%% of %u\n", + outs() << format("Taken at least once:%.2f%% of %u\n", double(Coverage.BranchesTaken)*100/Coverage.Branches, Coverage.Branches); } else {