Home | History | Annotate | Download | only in ld-sparc
      1 	.text
      2 	.globl	_start
      3 	.type	_start, %function
      4 _start:
      5 	save	%sp, -104, %sp
      6 
      7 	call	foo, 0
      8 	nop
      9 
     10 	call	sexternal, 0
     11 	nop
     12 
     13 	call	sglobal, 0
     14 	nop
     15 
     16 	ret
     17 	restore
     18 	.size	_start, .-_start
     19 
     20 	.globl	sexternal
     21 	.type	sexternal, %function
     22 sexternal:
     23 	retl
     24 	nop
     25 	.size	sexternal, .-sexternal
     26