Fix typo fsqrt -> sqrtf.
[deliverable/binutils-gdb.git] / ld / testsuite / ld-scripts / rgn-over7.t
CommitLineData
20e56351
DJ
1/* Memory region overflow tests: overflow r1 plus text/data collision. */
2
3MEMORY {
4 bss (rwx) : ORIGIN = 0, LENGTH = 0
5 r1 (rwx) : ORIGIN = 0x1000, LENGTH = 8
6 r2 (rwx) : ORIGIN = 0x1008, LENGTH = 12
7}
8_start = 0x1000;
9SECTIONS {
10 .bss : { *(.bss) } > bss
11 .text : { *(.txt) } > r1
12 .data : { *(.dat) } > r2
13 /DISCARD/ : { *(*) }
14}
This page took 0.375148 seconds and 4 git commands to generate.