Skip to content

Instantly share code, notes, and snippets.

@bdqnghi
Created April 17, 2017 17:20
Show Gist options
  • Save bdqnghi/07537544da7bdb2480890eb464205093 to your computer and use it in GitHub Desktop.
Save bdqnghi/07537544da7bdb2480890eb464205093 to your computer and use it in GitHub Desktop.
create CFG with llvm
#!/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