Fix typo
[llvm/msp430.git] / docs / CommandGuide / llvm-extract.pod
blobd916612ec5c65d7c56b2464c34974baf49848d3f
1 =pod
3 =head1 NAME
5 llvm-extract - extract a function from an LLVM module
7 =head1 SYNOPSIS
9 B<llvm-extract> [I<options>] B<--func> I<function-name> [I<filename>]
11 =head1 DESCRIPTION
13 The B<llvm-extract> command takes the name of a function and extracts it from
14 the specified LLVM bitcode file.  It is primarily used as a debugging tool to
15 reduce test cases from larger programs that are triggering a bug.
17 In addition to extracting the bitcode of the specified function,
18 B<llvm-extract> will also remove unreachable global variables, prototypes, and
19 unused types.
21 The B<llvm-extract> command reads its input from standard input if filename is
22 omitted or if filename is -.  The output is always written to standard output,
23 unless the B<-o> option is specified (see below).
25 =head1 OPTIONS
27 =over
29 =item B<-f>
31 Force overwrite.  Normally, B<llvm-extract> will refuse to overwrite an
32 output file that already exists.  With this option, B<llvm-extract>
33 will overwrite the output file and replace it with new bitcode.
35 =item B<--func> I<function-name>
37 Extract the function named I<function-name> from the LLVM bitcode.
39 =item B<--help>
41 Print a summary of command line options.
43 =item B<-o> I<filename>
45 Specify the output filename.  If filename is "-" (the default), then
46 B<llvm-extract> sends its output to standard output.
48 =back
50 =head1 EXIT STATUS
52 If B<llvm-extract> succeeds, it will exit with 0.  Otherwise, if an error
53 occurs, it will exit with a non-zero value.
55 =head1 SEE ALSO
57 L<bugpoint|bugpoint>
59 =head1 AUTHORS
61 Maintained by the LLVM Team (L<http://llvm.org>).
63 =cut