brintos

brintos / llvm-project-archived public Read only

0
0
Text · 185 B · 728291a Raw
19 lines · c
1int k = 1;2 3int bar() {4  return 0;5}6 7int foo() {8  return bar();9}10 11int main() {12  // Control flow to create basic block sections.13  if (k)14    foo();15  else16    bar();17  return 0;18}19