brintos

brintos / llvm-project-archived public Read only

0
0
Text · 278 B · 52561d3 Raw
16 lines · cpp
1void noop() {}2 3void fun() {4  int user_command = 474747;5  int alias_command = 474747;6  int alias_command_with_arg = 474747;7  int platform = 474747; // built-in command8  noop();                // breakpoint 19}10 11int main() {12  fun();13  noop(); // breakpoint 214  return 0;15}16