Use "pulongest" on aarch64-tdep.c:aarch64_gdbarch_init
[deliverable/binutils-gdb.git] / ld / testsuite / ld-elf / implib.s
1 .ifndef NO_GLOBAL
2 .ifdef HPUX
3 exported1 .comm 1
4 .else
5 .comm exported1,1
6 .endif
7
8 .data
9 .global exported2
10 .type exported2, %object
11 .size exported2, 1
12 exported2:
13 .byte 21
14 .endif
15
16 .section ".bss", "aw", %nobits
17 not_exported1:
18 .space 1
19 .size not_exported1, 1
20
21 .data
22 .type not_exported2, %object
23 .size not_exported2, 1
24 not_exported2:
25 .byte 42
This page took 0.030139 seconds and 4 git commands to generate.