pythonic
pythonic

Reputation: 21635

Converting llvm .bc file to human readable .ll file

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

Upvotes: 30

Views: 25154

Answers (1)

Slartibartfast
Slartibartfast

Reputation: 8805

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

Upvotes: 36

Related Questions