GCOV.cpp: Fix format strings, %lf. Don't use %lf to double.
authorNAKAMURA Takumi <geek4civic@gmail.com>
Thu, 19 Dec 2013 08:46:28 +0000 (08:46 +0000)
committerNAKAMURA Takumi <geek4civic@gmail.com>
Thu, 19 Dec 2013 08:46:28 +0000 (08:46 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@197663 91177308-0d34-0410-b5e6-96231b3b80d8

lib/IR/GCOV.cpp

index 140d259c2a65cc78fdcbb3b6ff847d82ec9bef1a..e39842c2fddbf27f0ab3d18e5dde229af0fdec65 100644 (file)
@@ -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 {