Home | History | Annotate | Download | only in ld-arm
      1 .text
      2 .arm
      3 .global _start
      4 .type _start, %function
      5 _start:
      6 b foo
      7 
      8 .thumb
      9 .global foo
     10 .type foo, %function
     11 foo:
     12 nop
     13 bx lr
     14 
     15