]> git.saurik.com Git - apple/ld64.git/blob - unit-tests/test-cases/cstring-custom-section/bar.s
ld64-95.8.4.tar.gz
[apple/ld64.git] / unit-tests / test-cases / cstring-custom-section / bar.s
1 .cstring
2 LC0:
3 .ascii "bar\0"
4 LC1:
5 .ascii "coal\0"
6 .text
7
8
9 .section __TEXT, __mystring, cstring_literals
10 LC4:
11 .ascii "bar\0"
12 LC5:
13 .ascii "mycoal\0"
14
15
16 .data
17 #if __LP64__
18 .quad LC0
19 .quad LC1
20 .quad LC4
21 .quad LC5
22 #else
23 .long LC0
24 .long LC1
25 .long LC4
26 .long LC5
27 #endif
28
29 .subsections_via_symbols
30
31