brintos

brintos / llvm-project-archived public Read only

0
0
Text · 273 B · 4654443 Raw
16 lines · c
1#include <stdio.h>2 3void __attribute__((noinline)) bar(unsigned i) { printf("%d\n", i); }4 5void __attribute__((noinline)) foo(unsigned j) {6  unsigned i = j;7  bar(i);8  i = 10;9  bar(i); // Set break point at this line.10}11 12int main(int argc, char** argv)13{14  foo(argc);15}16