]> git.saurik.com Git - apple/ld64.git/blob - ld64-134.9/unit-tests/test-cases/branch-interworking/mythumb.s
ld64-134.9.tar.gz
[apple/ld64.git] / ld64-134.9 / unit-tests / test-cases / branch-interworking / mythumb.s
1
2 .text
3 .align 4
4 _junk:
5 nop
6 nop
7 nop
8 nop
9 #if __arm__
10 .syntax unified
11 .thumb_func _mythumb
12 .code 16
13 #endif
14
15 .globl _mythumb
16 _mythumb:
17 nop
18 #if __arm__
19 //bl _myarm
20 b.w _myarm
21 #elif __i386__ || __x86_64__
22 jmp _myarm
23 #endif
24
25
26 .subsections_via_symbols