]> git.saurik.com Git - apple/ld64.git/blob - unit-tests/test-cases/branch-interworking/myarm.s
ld64-123.2.tar.gz
[apple/ld64.git] / unit-tests / test-cases / branch-interworking / myarm.s
1
2 .text
3 #if __arm__
4 .code 32
5 .align 2
6 #endif
7
8 .globl _myarm
9 _myarm:
10 nop
11 #if __arm__
12 //bl _mythumb
13 b _mythumb
14 #elif __i386__ || __x86_64__
15 jmp _mythumb
16 #endif
17
18
19 .subsections_via_symbols