1static int __b_global = 2;
2char __extra[4096]; // Make sure sizeof b.o differs from a.o and c.o
3
4int b(int arg) {
5 int result = arg + __b_global;
6 return result;
7}
8
9int bb(int arg1) {
10 int result2 = arg1 - __b_global;
11 return result2;
12}
13

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