mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-28 00:56:05 +00:00

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
12 lines
172 B
C
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;
|
|
}
|