Kaining Zhong dc46ae6df5 [lldb] Add support to load object files from thin archives
This fixes https://github.com/llvm/llvm-project/issues/50114 where lldb/mac
can't load object files from thin archives.  This patch allows lldb to identify
thin archives, and load object files contained in them.

Differential Revision: https://reviews.llvm.org/D126464
2022-07-05 10:52:26 +02:00

12 lines
172 B
C

static int __c_global = 3;
int c(int arg) {
int result = arg + __c_global;
return result;
}
int cc(int arg1) {
int result3 = arg1 - __c_global;
return result3;
}