bfd/
[deliverable/binutils-gdb.git] / ld / testsuite / ld-powerpc / aix-weak-1b.s
1 .globl a
2 .csect a[RW],2
3 a:
4 .long 0x55555555
5 .weak b
6 .csect b[RW],2
7 b:
8 .long 0x66666666
9 .comm c,4
10 .comm d,4
11
12 # Same again, with weak common symbols
13 .globl e
14 .csect e[RW],2
15 e:
16 .long 0x77777777
17 .weak f
18 .csect f[RW],2
19 f:
20 .long 0x88888888
21 .weak g
22 .comm g,4
23 .weak h
24 .comm h,4
This page took 0.040038 seconds and 4 git commands to generate.