Forrest logo
back to context overview

llvm-dis

List of commands for llvm-dis:

  • llvm-dis:tldr:54039 llvm-dis: Convert a bitcode file to an LLVM IR file with the same filename.
    $ llvm-dis ${filename-bc}
    try on your machine
    explain this command
  • llvm-dis:tldr:8bdfd llvm-dis: Convert a bitcode file to LLVM IR, writing the result to the specified file.
    $ llvm-dis ${path-to-input-bc} -o ${path-to-output-ll}
    try on your machine
    explain this command
  • llvm-dis:tldr:99527 llvm-dis: Convert a bitcode file as LLVM IR and write the result to `stdout`.
    $ llvm-dis ${path-to-input-bc} -o -
    try on your machine
    explain this command
back to context overview