]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - ld/testsuite/ld-elf/nobits-1.t
Update year range in copyright notice of binutils files
[thirdparty/binutils-gdb.git] / ld / testsuite / ld-elf / nobits-1.t
CommitLineData
d64cc92a
L
1ENTRY(_entry)
2PHDRS
3{
4 data PT_LOAD;
5}
6SECTIONS
7{
8 . = 0x1000000;
9 .foo : { *(.foo) } :data
10 . = 0x2000000;
11 .bar : { *(.bar) } :data
12 /DISCARD/ : { *(*) }
13}