Converting llvm .bc file to human readable .ll file

pythonic picture pythonic · Apr 9, 2012 · Viewed 17.9k times · Source

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

Answer

Slartibartfast picture Slartibartfast · Apr 9, 2012

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