bolt/deps/llvm-18.1.8/lldb/test/API/functionalities/archives/b.c
2025-02-14 19:21:04 +01:00

12 lines
249 B
C

static int __b_global = 2;
char __extra[4096]; // Make sure sizeof b.o differs from a.o and c.o
int b(int arg) {
int result = arg + __b_global;
return result;
}
int bb(int arg1) {
int result2 = arg1 - __b_global;
return result2;
}