Silence -Wunused-variable in release builds.
[llvm/stm8.git] / docs / CommandGuide / llvm-dis.pod
blob9f4026c27fe7cd7a4992369870b6703fc9a71c77
1 =pod
3 =head1 NAME
5 llvm-dis - LLVM disassembler
7 =head1 SYNOPSIS
9 B<llvm-dis> [I<options>] [I<filename>]
11 =head1 DESCRIPTION
13 The B<llvm-dis> command is the LLVM disassembler.  It takes an LLVM
14 bitcode file and converts it into human-readable LLVM assembly language.
16 If filename is omitted or specified as C<->, B<llvm-dis> reads its
17 input from standard input.
19 If the input is being read from standard input, then B<llvm-dis>
20 will send its output to standard output by default.  Otherwise, the
21 output will be written to a file named after the input file, with
22 a C<.ll> suffix added (any existing C<.bc> suffix will first be
23 removed).  You can override the choice of output file using the
24 B<-o> option.
26 =head1 OPTIONS
28 =over
30 =item B<-f>
32 Enable binary output on terminals.  Normally, B<llvm-dis> will refuse to
33 write raw bitcode output if the output stream is a terminal. With this option,
34 B<llvm-dis> will write raw bitcode regardless of the output device.
36 =item B<-help>
38 Print a summary of command line options.
40 =item B<-o> F<filename>
42 Specify the output file name.  If F<filename> is -, then the output is sent
43 to standard output.
45 =back
47 =head1 EXIT STATUS
49 If B<llvm-dis> succeeds, it will exit with 0.  Otherwise, if an error
50 occurs, it will exit with a non-zero value.
52 =head1 SEE ALSO
54 L<llvm-as|llvm-as>
56 =head1 AUTHORS
58 Maintained by the LLVM Team (L<http://llvm.org/>).
60 =cut