Files
clang-p2996/lldb/test/API/macosx/universal64/main.c
Jonas Devlieghere fda53ad937 [lldb] Support Universal Mach-O binaries with a fat64 header
Support universal Mach-O binaries with a fat64 header. After
4d683f7fa7, dsymutil can now generate such binaries when the offsets
would otherwise overflow the 32-bit offsets in the regular fat header.

rdar://107289570

Differential revision: https://reviews.llvm.org/D147012
2023-03-28 15:46:26 -07:00

6 lines
95 B
C

#include <stdio.h>
int foo() { return 0; }
int main(int argc, char **argv) { return foo(); }