* elf32-spu.c (build_stub): Fix malloc under-allocation.
[binutils.git] / ld / testsuite / ld-scripts / rgn-over4.t
blobd2463e9038fb9e92be31131e0d973b76c8fcb724
1 /* Memory region overflow tests: overflow VMA but not LMA.  */
3 MEMORY {
4   bss (rwx) : ORIGIN = 0, LENGTH = 0
5   r1  (rwx) : ORIGIN = 0x1000, LENGTH = 8
6   v1  (rwx) : ORIGIN = 0x2000, LENGTH = 24
8 _start = 0x1000;
9 SECTIONS {
10   .bss  : { *(.bss)  } > bss
11   .text : { *(.txt) } > r1 AT> v1
12   .data : { *(.dat) } > r1 AT> v1
13   /DISCARD/ : { *(*) }