Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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?

like image 997
pythonic Avatar asked Apr 09 '12 08:04

pythonic


1 Answers

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

like image 107
Slartibartfast Avatar answered Nov 03 '22 14:11

Slartibartfast