LLVM: llvm-dis tool


NAME

llvm-dis

SYNOPSIS

llvm-dis [options] [filename]

DESCRIPTION

The llvm-dis command is the LLVM disassembler. It takes an LLVM bytecode file and converts it into LLVM assembly language or C source code with equivalent functionality.

If filename is omitted, llvm-dis reads its input from standard input.

The default output file for llvm-dis is determined by the following logic:

OPTIONS

EXIT STATUS

If llvm-dis succeeds, it will exit with 0. Otherwise, if an error occurs, it will exit with a non-zero value.

SEE ALSO

llvm-as
Maintained by the LLVM Team.