Mercurial > hg > CbC > CbC_llvm
comparison tools/llvm-cov/gcov.cpp @ 134:3a76565eade5 LLVM5.0.1
update 5.0.1
author | mir3636 |
---|---|
date | Sat, 17 Feb 2018 09:57:20 +0900 |
parents | 803732b1fca8 |
children | c2174574ed3a |
comparison
equal
deleted
inserted
replaced
133:c60214abe0e8 | 134:3a76565eade5 |
---|---|
9 // | 9 // |
10 // llvm-cov is a command line tools to analyze and report coverage information. | 10 // llvm-cov is a command line tools to analyze and report coverage information. |
11 // | 11 // |
12 //===----------------------------------------------------------------------===// | 12 //===----------------------------------------------------------------------===// |
13 | 13 |
14 #include "llvm/ProfileData/GCOV.h" | |
14 #include "llvm/ADT/SmallString.h" | 15 #include "llvm/ADT/SmallString.h" |
15 #include "llvm/Support/CommandLine.h" | 16 #include "llvm/Support/CommandLine.h" |
16 #include "llvm/Support/Errc.h" | 17 #include "llvm/Support/Errc.h" |
17 #include "llvm/Support/FileSystem.h" | 18 #include "llvm/Support/FileSystem.h" |
18 #include "llvm/Support/GCOV.h" | |
19 #include "llvm/Support/Path.h" | 19 #include "llvm/Support/Path.h" |
20 #include <system_error> | 20 #include <system_error> |
21 using namespace llvm; | 21 using namespace llvm; |
22 | 22 |
23 static void reportCoverage(StringRef SourceFile, StringRef ObjectDir, | 23 static void reportCoverage(StringRef SourceFile, StringRef ObjectDir, |