Converting llvm .bc file to human readable .ll file

c, clang, linux, llvm, x86-64

Solution

Here is a useful link with all the llvm commands. Obviously `llvm-dis` does what you ask.

Problem

How can I generate human readable llvm bitcode (extension .ll) from the binary llvm bitcode (extension .bc) file?

Original source