binutils-gdb/ld/testsuite/ld-mn10300/i143317.t
Nick Clifton e9e9cead3f * ld-elf/flags1.d: Add xfails for ports for which the test will work.
* ld-mn10300/i143317.s: New test - checks linker relaxation when  symbols
  are in a merged section.
* ld-mn10300/i143317.d: Expected disassembly.
* ld-mn10300/i143317.t: Linker map.
* ld-mn10300/mn10300.exp (mn10300_tests): Add the i143317 test.
2007-12-31 11:29:01 +00:00

32 lines
304 B
Raku

SECTIONS
{
.bss :
{
*(.bss)
end = .;
}
. = 0x1000;
.got : { *(.got.plt) *(.got) }
.text :
{
*(.text)
}
. = 0x8ff5;
.rodata : { *(.rodata .rodata.* .gnu.linkonce.r.*) }
.data :
{
*(.data)
}
edata = .;
.stac :
{
*(.stack)
}
.plt : { *(.plt) }
.rela.plt : { *(.rela.plt) }
.rela.dyn :
{
*(.rela.text)
}
}