Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Add comment describing what's going on here. | Bill Wendling | 2012-11-07 | 1 | -0/+21 | |
| | | | | llvm-svn: 167525 | |||||
* | Put GCOVFile and other related interface in a common header so that llvm-cov ↵ | Devang Patel | 2011-10-04 | 1 | -1/+1 | |
| | | | | | | tool can share it with GCOV writer. llvm-svn: 141095 | |||||
* | Clarify comments. | Devang Patel | 2011-09-29 | 1 | -1/+0 | |
| | | | | llvm-svn: 140787 | |||||
* | Cosmetic changes, as per Nick's review. | Devang Patel | 2011-09-29 | 1 | -12/+8 | |
| | | | | llvm-svn: 140785 | |||||
* | Introduce llvm-cov. | Devang Patel | 2011-09-28 | 1 | -0/+83 | |
Add llvm-cov skeleton. It has initial support to read coverage info generated by GCOVProfiling.cpp. Today, you can do prompt> clang a.c -ftest-coverage -fprofile-arcs -o a prompt> ./a prompt> llvm-cov -gcno a.gcno -gcda a.gcda a.c : #include "a.h" : : int main() { : int i = 0; : if (i) { 1: int j = 0; 1: j = 1; 1: } else { : int k = 1; : k = 2; : } 1: return 0; : } : : llvm-svn: 140712 |