Files
clang-p2996/lldb/test/API/macosx/bss-only-data-section-sliding/main.c
Jason Molenda 623e845591 Recognize BSS-only DATA segments as sections that need to be slid
ObjectFileMachO::SetLoadAddress() should allow for a DATA segment
that has no file content to be slid in the vmaddr, it is valid
to have such a section.

Differential Revision: https://reviews.llvm.org/D154037
rdar://99744343
2023-06-29 17:51:41 -07:00

3 lines
42 B
C

int glob = 0;
int main() { return glob; }