]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - ld/testsuite/ld-elf/implib.s
Update year range in copyright notice of binutils files
[thirdparty/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