summaryrefslogtreecommitdiffstats
path: root/binutils-2.25/ld/testsuite/ld-elf/orphan-region.ld
blob: 2abf8bcb02a8eed7897852705d4b6463a55cd1ba (plain)
1
2
3
4
5
6
7
8
9
10
11
MEMORY
{
	region : ORIGIN = 0x40000000, LENGTH = 8M
}

SECTIONS
{
	.text : ALIGN (4) { *(.text) } > region
	.rodata : ALIGN (4) { *(.rodata) } > region
	/DISCARD/ : { *(.reginfo) *(.MIPS.abiflags) *(.trampolines) }
}