1	.text
2	.arch armv5t
3	.global arm
4	.global t1
5	.global t2
6	.global t5
7arm:
8	bx lr
9	.thumb
10	.thumb_func
11t1:
12	bx lr
13	.thumb_func
14t2:
15	bl t3
16	bl t4
17	.thumb_func
18t5:
19	bl local_thumb
20	nop
21local_thumb:
22	blx t3
23	bl _start
24	blx _start
25