bolt/deps/llvm-18.1.8/lldb/test/API/functionalities/archives/a.c

12 lines
217 B
C
Raw Normal View History

2025-02-14 19:21:04 +01:00
int __a_global = 1;
int a(int arg) {
int result = arg + __a_global;
return result; // Set file and line breakpoint inside a().
}
int aa(int arg1) {
int result1 = arg1 - __a_global;
return result1;
}