Created
April 17, 2017 17:20
-
-
Save bdqnghi/07537544da7bdb2480890eb464205093 to your computer and use it in GitHub Desktop.
create CFG with llvm
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# create .bc file | |
clang -emit-llvm -c testcfg.c | |
# create .dot file | |
opt -dot-cfg testcfg.bc | |
# cteate png,pdf | |
dot -Tpng -o main.png cfg.main.dot |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment