mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-27 20:14:06 +08:00
e9e9cead3f
* 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.
32 lines
304 B
Raku
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)
|
|
}
|
|
}
|