Home | History | Annotate | Download | only in arm
      1 	.text
      2 	.arm
      3 	.global mapping
      4 mapping:
      5 	nop
      6 	bl mapping
      7 
      8 	.global thumb_mapping
      9 	.thumb_func
     10 thumb_mapping:
     11 	.thumb
     12 	nop
     13 	bl thumb_mapping
     14 
     15 	.data
     16 	.word 0x123456
     17 
     18 	.section foo,"ax"
     19 	nop
     20