Home | History | Annotate | Download | only in ld-powerpc
      1 	.comm	a,4
      2 	.comm	b,4
      3 	.globl	c
      4 	.csect	c[RW],2
      5 c:
      6 	.long	0x11111111
      7 	.weak	d
      8 	.csect	d[RW],2
      9 d:
     10 	.long	0x22222222
     11 
     12 	# Same again, with weak common symbols
     13 	.weak	e
     14 	.comm	e,4
     15 	.weak	f
     16 	.comm	f,4
     17 	.globl	g
     18 	.csect	g[RW],2
     19 g:
     20 	.long	0x33333333
     21 	.weak	h
     22 	.csect	h[RW],2
     23 h:
     24 	.long	0x44444444
     25