]> git.saurik.com Git - apple/ld64.git/blame - unit-tests/test-cases/cstring-custom-section/foo.s
ld64-133.3.tar.gz
[apple/ld64.git] / unit-tests / test-cases / cstring-custom-section / foo.s
CommitLineData
55e3d2f6
A
1 .cstring
2LC0:
3 .ascii "foo\0"
4LC1:
5 .ascii "coal\0"
6 .text
7
8
9 .section __TEXT, __mystring, cstring_literals
10LC4:
11 .ascii "foo\0"
12LC5:
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