* ldgram.y: Add ALIGN_WITH_INPUT output section attribute.
[deliverable/binutils-gdb.git] / ld / testsuite / ld-scripts / rgn-at4.t
CommitLineData
ec6d26be
NS
1/* Memory region at test, >AT should propagate by default */
2
3MEMORY {
4 ram : ORIGIN = 0x10000, LENGTH = 0x100
5 rom : ORIGIN = 0x20000, LENGTH = 0x200
6}
7_start = 0x1000;
8SECTIONS {
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.205576 seconds and 4 git commands to generate.