brintos

brintos / llvm-project-archived public Read only

0
0
Text · 133 B · 609f54a Raw
14 lines · c
1// Some code for the middle of a program2 3x = x;4if (x == 0) {5  x = 1;6} else {7  x = 2;8}9if (true) {10  x = x;11} else {12  x = x;13}14