Reputation: 21635
How can I generate human readable llvm bitcode (extension .ll) from the binary llvm bitcode (extension .bc) file?
Upvotes: 30
Views: 25154
Reputation: 8805
Here is a useful link with all the llvm commands. Obviously llvm-dis
does what you ask.
Upvotes: 36