brintos

brintos / llvm-project-archived public Read only

0
0
Text · 196 B · ccec2bb Raw
13 lines · c
1static void start_recording() {}2 3static void trigger_breakpoint() {}4 5static void stop_recording() {}6 7int main() {8  start_recording();9  trigger_breakpoint();10  stop_recording();11  return 0;12}13