Home | History | Annotate | Download | only in testsuite
      1 	.syntax	unified
      2 
      3 	.text
      4 	.align	2
      5 
      6 	.global	_start
      7 	.type	_start, %function
      8 _start:
      9 	bx	lr
     10 	.size	_start, .-_start
     11 
     12 	.global	_arm_test
     13 	.type	_arm_test, %function
     14 _arm_test:
     15 	movt	r0, #:upper16:_movt_abs_global
     16 	movw	r0, #:lower16:_movw_abs_global
     17 	bx	lr
     18 	.size	_arm_test, .-_arm_test
     19 
     20 	.thumb
     21 	.global	_thumb_test
     22 _thumb_test:
     23 	movt	r0, #:upper16:_thm_movt_abs_global
     24 	movw	r0, #:lower16:_thm_movw_abs_global
     25 	bx	lr
     26 	.size	_thumb_test, .-_thumb_test
     27 
     28 	.data
     29 _data_test:
     30 	.word	_abs32_global
     31 	.word	_abs32_global_plt
     32