30

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

pythonic
  • 20,589
  • 43
  • 136
  • 219

1 Answers1

35

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

Slartibartfast
  • 8,735
  • 6
  • 41
  • 45