]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - ld/testsuite/ld-elf/retain3.s
Update year range in copyright notice of binutils files
[thirdparty/binutils-gdb.git] / ld / testsuite / ld-elf / retain3.s
1 /* The retention of bar should also prevent foo from being gc'ed, since bar
2 references foo. */
3 .section .text.foo,"ax"
4 .global foo
5 .type foo, %function
6 foo:
7 .word 0
8
9 .section .data.bar,"awR"
10 .global bar
11 .type bar, %object
12 bar:
13 .long foo
14
15 .section .text._start,"ax"
16 .global _start
17 .type _start, %function
18 _start:
19 .word 0