1 # Test R_ARM_CALL and R_ARM_JUMP24 relocations and interworking 2 .text 3 .arch armv5t 4 .global _start 5 .type _start, %function 6 _start: 7 bl arm 8 bl t1 9 bl t2 10 bl t5 11 blx t1 12 blx t2 13 b t1 14 b t2 15 blne t1 16 blne t2 17 blne arm 18 blx arm 19 blx thumblocal 20 .thumb 21 thumblocal: 22 bx lr 23 .global t3 24 .thumb_func 25 t3: 26 bx lr 27 .global t4 28 .thumb_func 29 t4: 30 bx lr 31 nop 32