1LLVM-DIS(1) LLVM Command Guide LLVM-DIS(1)
2
3
4
6 llvm-dis - LLVM disassembler
7
9 llvm-dis [options] [filename]
10
12 The llvm-dis command is the LLVM disassembler. It takes an LLVM
13 bitcode file and converts it into human-readable LLVM assembly
14 language.
15
16 If filename is omitted or specified as "-", llvm-dis reads its input
17 from standard input.
18
19 If the input is being read from standard input, then llvm-dis will send
20 its output to standard output by default. Otherwise, the output will
21 be written to a file named after the input file, with a ".ll" suffix
22 added (any existing ".bc" suffix will first be removed). You can
23 override the choice of output file using the -o option.
24
26 -f Enable binary output on terminals. Normally, llvm-dis will refuse
27 to write raw bitcode output if the output stream is a terminal.
28 With this option, llvm-dis will write raw bitcode regardless of the
29 output device.
30
31 -help
32 Print a summary of command line options.
33
34 -o filename
35 Specify the output file name. If filename is -, then the output is
36 sent to standard output.
37
39 If llvm-dis succeeds, it will exit with 0. Otherwise, if an error
40 occurs, it will exit with a non-zero value.
41
43 llvm-as
44
46 Maintained by the LLVM Team (<http://llvm.org>).
47
48
49
50CVS 2010-05-07 LLVM-DIS(1)