Hi Developer,
I have wrote simple program called test.c as follows.
int a, b;
int main() {
a=10;
b=10;
return a+b;
}
Compiled with clang command to produce test.ll file which is attached below,
$clang -cc1 test.c -emit-llvm
test.ll (798 Bytes)