Files
llvm-project/lldb/test/API/python_api/sbmodule/a.c
barsolo2000 402109e1c4 [LLDB] added getName method in SBModule (#150331)
added getName method in SBModule.h and .cpp in order to get the name of
the module from m_object_name.

---------

Co-authored-by: Bar Soloveychik <barsolo@fb.com>
2025-08-19 14:24:10 -07:00

12 lines
165 B
C

int __a_global = 1;
int a(int arg) {
int result = arg + __a_global;
return result;
}
int aa(int arg1) {
int result1 = arg1 - __a_global;
return result1;
}