]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - ld/testsuite/ld-scripts/phdrs.t
19990502 sourceware import
[thirdparty/binutils-gdb.git] / ld / testsuite / ld-scripts / phdrs.t
CommitLineData
252b5132
RH
1PHDRS
2{
3 header PT_PHDR PHDRS ;
4 text PT_LOAD FILEHDR PHDRS ;
5 data PT_LOAD ;
6}
7
8SECTIONS
9{
10 . = 0x80000 + SIZEOF_HEADERS;
11 .text : { *(.text) } :text
12 .data : { *(.data) } :data
13 /DISCARD/ : { *(.reginfo) }
14}