]> git.saurik.com Git - apple/ld64.git/blob - unit-tests/test-cases/label-on-end-of-section/foo.s
ld64-96.5.tar.gz
[apple/ld64.git] / unit-tests / test-cases / label-on-end-of-section / foo.s
1
2
3 .section __MY, __data
4 _start:
5 .long 0
6 _end:
7
8 # _var is a pointer to the end of the __MY/__data section
9 .data
10 _var:
11 #if __x86_64__
12 .quad _end
13 #else
14 .long _end
15 #endif
16
17 .subsections_via_symbols