old-cross-binutils/ld/testsuite/ld-elf/orphan4.ld
DJ Delorie b5f14a6dff * emultempl/elf32.em (_place_orphan): If an input section doesn't
match an existing output section, but an unused output section
statement does match, use it.
* emultempl/pe.em (_place_orphan): Likewise.
* emultempl/pep.em (_place_orphan): Likewise.

* ld-elf/orphan4.d: New.
* ld-elf/orphan4.ld: New.
* ld-elf/orphan4.s: New.
2010-01-14 04:56:12 +00:00

13 lines
363 B
Text

/* The .foo section doesn't specify *any* objects, but the object
we're linking has sections named ".foo". Make sure these sections
are linked into the .foo output section anyway. The bug that was
fixed was that a new .foo output section would be created at
address 0. */
SECTIONS {
.foo 0x00001000 : {
}
.text 0x00002000 : {
*(.text);
}
}