Update year range in copyright notice of binutils files
[binutils-gdb.git] / ld / testsuite / ld-elf / group.ld
1 PHDRS
2 {
3 header PT_PHDR PHDRS ;
4 image PT_LOAD PHDRS;
5 }
6
7 SECTIONS
8 {
9 . = 0x1000;
10 .text : { *(.text) *(.rodata.brlt) } :image :header
11 /DISCARD/ : { *(.dropme) *(.reginfo) *(.MIPS.abiflags) }
12 }