llvm-dis
disassembler
TLDR
Disassemble bitcode to LLVM IR
$ llvm-dis [file.bc]
Output to specific file$ llvm-dis [file.bc] -o [output.ll]
Disassemble to stdout$ llvm-dis [file.bc] -o -
SYNOPSIS
llvm-dis [options] [file]
DESCRIPTION
llvm-dis is the LLVM disassembler. Converts LLVM bitcode (.bc) files to human-readable LLVM assembly language (.ll) format. Useful for inspecting compiled code and debugging LLVM optimization passes.
PARAMETERS
-o file
Output file name.--show-annotations
Show annotations in output.

