brintos

brintos / llvm-project-archived public Read only

0
0
Text · 140 B · 38ea7be Raw
9 lines · c
1__attribute__((section("__codesection")))2int f(int a) {3  return a + 1; // Set break point at this line.4}5 6int main() {7  return f(10);8}9