├── .gitignore ├── Makefile ├── README.md ├── multi_bb.cpp └── one_bb.cpp /.gitignore: -------------------------------------------------------------------------------- 1 | bin/ 2 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardUSTC/llvm-ir-programming-example/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardUSTC/llvm-ir-programming-example/HEAD/README.md -------------------------------------------------------------------------------- /multi_bb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardUSTC/llvm-ir-programming-example/HEAD/multi_bb.cpp -------------------------------------------------------------------------------- /one_bb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardUSTC/llvm-ir-programming-example/HEAD/one_bb.cpp --------------------------------------------------------------------------------