Extend PE matching regexp in PR 19457 test to match cygwin and mingw targets.
[deliverable/binutils-gdb.git] / ld / testsuite / ld-scripts / rgn-at4.t
1 /* Memory region at test, >AT should propagate by default */
2
3 MEMORY {
4 ram : ORIGIN = 0x10000, LENGTH = 0x100
5 rom : ORIGIN = 0x20000, LENGTH = 0x200
6 }
7 _start = 0x1000;
8 SECTIONS {
9 .text : { *(.text) } >ram AT>rom
10 .data : { *(.data) } >ram
11 .bss : { *(.bss) } >ram
12 .trail : { LONG(5) } >ram
13 /DISCARD/ : { *(*) }
14 }
This page took 0.029283 seconds and 4 git commands to generate.