Re-add support for lbarx, lharx, stbcx. and sthcx. insns back to the E6500 cpu.
[binutils-gdb.git] / ld / testsuite / ld-scripts / phdrs3.t
blob4bd4e858cf0f6a5e262045e5be2b0648c108c1da
1 PHDRS
3   data PT_LOAD ;
4   header PT_PHDR PHDRS ; /* OK */
5   text PT_LOAD FILEHDR PHDRS ;
8 SECTIONS
10   /* This test will fail on architectures where the startaddress below
11      is less than the constant MAXPAGESIZE.  */
12   . = 0x800000 + SIZEOF_HEADERS;
13   .text : { *(.text) } :text
14   .data : { *(.data) } :data
15   /DISCARD/ : { *(.*) }