]> git.saurik.com Git - apple/ld64.git/blame - unit-tests/test-cases/branch-distance/foo.s
ld64-123.2.tar.gz
[apple/ld64.git] / unit-tests / test-cases / branch-distance / foo.s
CommitLineData
55e3d2f6
A
1
2
3 .text
4
5#if __thumb__
6 .thumb_func _foo
7 .code 16
8#endif
9 .globl _foo
10_foo:
11 nop
12#if __arm__
13 bl _bar
14 blx _bar
15// b _bar
16
17
18_space1:
19
20#if __thumb2__
21 .space 16*1024*1024 -100
22#elif __thumb__
23 .space 4*1024*1024 -100
24#else
25 .space 16*1024*1024 -100
26#endif
27
28#endif // __arm__
29
30
31
32 .subsections_via_symbols
33