Don't merge sections with differing MASKPROC or MASKOS flags
[deliverable/binutils-gdb.git] / ld / testsuite / ld-scripts / rgn-over1.t
CommitLineData
20e56351
DJ
1/* Memory region overflow tests: one region, first output sect doesn't fit. */
2
3MEMORY {
4 bss (rwx) : ORIGIN = 0, LENGTH = 0
5 r1 (rwx) : ORIGIN = 0x1000, LENGTH = 8
6}
7_start = 0x1000;
8SECTIONS {
9 .bss : { *(.bss) } > bss
10 .text : { *(.txt) } > r1
11 .data : { *(.dat) } > r1
12 /DISCARD/ : { *(*) }
13}
This page took 0.519649 seconds and 4 git commands to generate.