Re-add support for lbarx, lharx, stbcx. and sthcx. insns back to the E6500 cpu.
[binutils-gdb.git] / ld / testsuite / ld-scripts / section-flags-1.t
blob33804891ad599fc7f6a8a5cb4c3a0a72806cc558
1 MEMORY
3   ram (rwx) : ORIGIN = 0x100000, LENGTH = 144M
6 SECTIONS
8   .text :
9   {
10     INPUT_SECTION_FLAGS (!SHF_TLS) *(.text .text.* .text_* .gnu.linkonce.t.*)
11   } >ram
13   .text_vle : 
14   {
15     INPUT_SECTION_FLAGS (SHF_MERGE & SHF_STRINGS & SHF_LINK_ORDER) *(.text .text.* .text_* .gnu.linkonce.t.*)
16   } >ram
17   .text_other :
18   {
19     INPUT_SECTION_FLAGS (SHF_MERGE & !SHF_STRINGS) *(.text .text.* .text_* .gnu.linkonce.t.*)
20   }