workflows: Fix typo in pr-subscriber
[llvm-project.git] / llvm / docs / CommandGuide / llvm-dis.rst
blob69200c6a3bd80542ad2899f316f1bf1a1f0719b6
1 llvm-dis - LLVM disassembler
2 ============================
4 .. program:: llvm-dis
6 SYNOPSIS
7 --------
9 **llvm-dis** [*options*] [*filename*]
11 DESCRIPTION
12 -----------
14 The **llvm-dis** command is the LLVM disassembler.  It takes an LLVM
15 bitcode file and converts it into human-readable LLVM assembly language.
17 If filename is omitted or specified as ``-``, **llvm-dis** reads its
18 input from standard input.
20 If the input is being read from standard input, then **llvm-dis**
21 will send its output to standard output by default.  Otherwise, the
22 output will be written to a file named after the input file, with
23 a ``.ll`` suffix added (any existing ``.bc`` suffix will first be
24 removed).  You can override the choice of output file using the
25 **-o** option.
27 OPTIONS
28 -------
30 **-f**
32  Enable binary output on terminals.  Normally, **llvm-dis** will refuse to
33  write raw bitcode output if the output stream is a terminal. With this option,
34  **llvm-dis** will write raw bitcode regardless of the output device.
36 **-help**
38  Print a summary of command line options.
40 **-o** *filename*
42  Specify the output file name.  If *filename* is -, then the output is sent
43  to standard output.
45 EXIT STATUS
46 -----------
48 If **llvm-dis** succeeds, it will exit with 0.  Otherwise, if an error
49 occurs, it will exit with a non-zero value.
51 SEE ALSO
52 --------
54 :manpage:`llvm-as(1)`