/llvmtest

Primary LanguageTypeScript

IR to binary

llc -filetype=obj test.ll -o test.o
clang test.o -o test
./test

IR to assembly

llc -filetype=asm test.ll -o test.s

.c to IR

clang test.c -S -emit-llvm -o test.ll