1int __a_global = 1;
2
3int a(int arg) {
4 int result = arg + __a_global;
5 return result; // Set file and line breakpoint inside a().
6}
7
8int aa(int arg1) {
9 int result1 = arg1 - __a_global;
10 return result1;
11}
12

source code of lldb/test/API/functionalities/archives/a.c