History log of /external/llvm/tools/llvm-cov/Makefile
Revision Date Author Comments (<<< Hide modified files) (Show modified files >>>)
05c837ec24ba0de81c2d4068b925996f3cadef53 14-Nov-2013 NAKAMURA Takumi <geek4civic@gmail.com> llvm-cov requires IR and Support as libraries. Instrumentation would be overkill.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@194695 91177308-0d34-0410-b5e6-96231b3b80d8
/external/llvm/tools/llvm-cov/Makefile
8c39c9647da4f375e4f89bd417d86f5c3ff6dfa5 18-Oct-2011 Daniel Dunbar <daniel@zuster.org> build: Tidy up a bunch of tool Makefiles, and simplify where possible using the
new all-targets pseudo-component.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142401 91177308-0d34-0410-b5e6-96231b3b80d8
/external/llvm/tools/llvm-cov/Makefile
7a50202be59b59416d2d42820e68b26ed78b3d0f 29-Sep-2011 Devang Patel <dpatel@apple.com> Cosmetic changes, as per Nick's review.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@140785 91177308-0d34-0410-b5e6-96231b3b80d8
/external/llvm/tools/llvm-cov/Makefile
d02c42bb855484cad379a345dee04c7c6463f1cb 28-Sep-2011 Devang Patel <dpatel@apple.com> Introduce llvm-cov.

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;
: }
:
:




git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@140712 91177308-0d34-0410-b5e6-96231b3b80d8
/external/llvm/tools/llvm-cov/Makefile