brintos

brintos / llvm-project-archived public Read only

0
0
Text · 193 B · 84332d8 Raw
13 lines · cpp
1#include <stdio.h>2int global = 0;3int main()4{5  global = 5; // Set a breakpoint here6  puts("");7  __builtin_debugtrap();8  global = 10;9  __builtin_trap();10  global = 15;11  return global;12}13