]> git.saurik.com Git - apple/ld64.git/blob - unit-tests/test-cases/linker-optimization-hints/AdrpAdd.s
ld64-305.tar.gz
[apple/ld64.git] / unit-tests / test-cases / linker-optimization-hints / AdrpAdd.s
1
2
3 .text
4 .align 2
5 _test:
6 nop
7 L1: adrp x0, _foo@PAGE
8 L2: add x0, x0, _foo@PAGEOFF
9 nop
10
11 .loh AdrpAdd L1, L2
12
13 #if PADDING
14 _pad:
15 .space 1100000
16 #endif
17
18 #if FOO_AS_CONST
19 .const
20 #endif
21
22 #if FOO_AS_DATA
23 .data
24 #endif
25
26 _foo: .long 0
27