blob: e8ff6831175057440c8855fda0471cf7fc2cfd49 [file] [log] [blame]
Devang Patel5e19c1f2011-11-28 23:39:25 +00001=pod
2
3=head1 NAME
4
5llvm-cov - emit coverage information
6
7=head1 SYNOPSIS
8
9B<llvm-cov> [-gcno=filename] [-gcda=filename] [dump]
10
11=head1 DESCRIPTION
12
13The experimental B<llvm-cov> tool reads in description file generated by compiler
14and coverage data file generated by instrumented program. This program assumes
15that the description and data file uses same format as gcov files.
16
17=head1 OPTIONS
18
19=over
20
21=item B<-gcno=filename]
22
23This option selects input description file generated by compiler while instrumenting
24program.
25
26=item B<-gcda=filename]
27
28This option selects coverage data file generated by instrumented compiler.
29
30=item B<-dump>
31
32This options enables output dump that is suitable for a developer to help debug
33B<llvm-cov> itself.
34
35=back
36
37=head1 EXIT STATUS
38
39B<llvm-cov> returns 1 if it cannot read input files. Otherwise, it exits with zero.
40
41=head1 AUTHOR
42
43B<llvm-cov> is maintained by the LLVM Team (L<http://llvm.org/>).
44
45=cut