brintos

brintos / llvm-project-archived public Read only

0
0
Text · 126 B · 0ddf865 Raw
9 lines · cpp
1void bar(int const *foo) {2  __builtin_trap(); // Set break point at this line.3}4 5int main() {6  int foo = 5;7  bar(&foo);8}9