LLVM - yszheda/wiki GitHub Wiki
https://llvm.org/docs/tutorial/MyFirstLanguageFrontend/index.html
https://zhuanlan.zhihu.com/p/645857966
Tutorial
Usage
clang test.c -emit-llvm -c -o test.bc
# output LLVM IR
clang test.c --target=x86_64 -emit-llvm -S -c -o test.ll
# .ll -> .bc
llvm-as test.ll -o test.bc
# .bc -> .ll
llvm-dis test.bc -o test.ll