Home | History | Annotate | Download | only in ld-powerpc
      1 	.globl	x1
      2 	.csect	x1[RW]
      3 x1:
      4 	.long	0x0102
      5 
      6 	.weak	x2
      7 	.csect	x2[RW]
      8 x2:
      9 	.long	0x0304
     10 
     11 	.toc
     12 Tx1:
     13 	.tc	x1[TC],x1
     14 Tx2:
     15 	.tc	x2[TC],x2
     16 Tx3:
     17 	.tc	x3[TC],x3
     18 
     19 	.globl	.main
     20 	.csect	.main[PR]
     21 .main:
     22 	.if     size == 32
     23 	lwz     1,Tx1(2)
     24 	lwz     1,Tx2(2)
     25 	lwz     1,Tx3(2)
     26 	.else
     27 	ld      1,Tx1(2)
     28 	ld      1,Tx2(2)
     29 	ld      1,Tx3(2)
     30 	.endif
     31