brintos

brintos / llvm-project-archived public Read only

0
0
Text · 106 B · 3f0819b Raw
9 lines · c
1void foo() {2  int *i = 0;3  *i = 1;4}5 6void bar() { foo(); }7 8int main(int argc, char **argv) { bar(); }9