9b11fa1a85
* ld-mips-elf/export-class-call16-o32-irix.dd: New test. * ld-mips-elf/export-class-call16-o32.gd: New test. * ld-mips-elf/export-class-call16-n32.dd: New test. * ld-mips-elf/export-class-call16-n32.gd: New test. * ld-mips-elf/export-class-call16-n64.dd: New test. * ld-mips-elf/export-class-call16-n64.gd: New test. * ld-mips-elf/export-class-call16-def.s: New test source. * ld-mips-elf/export-class-call16-o32.s: New test source. * ld-mips-elf/export-class-call16-n32.s: New test source. * ld-mips-elf/export-class-call16-n64.s: New test source. * ld-mips-elf/export-class-call16.ld: New test linker script. * ld-mips-elf/mips-elf.exp: Run the new tests.
16 lines
342 B
Text
16 lines
342 B
Text
ENTRY (foo);
|
|
SECTIONS
|
|
{
|
|
.text : { *(.text) }
|
|
HIDDEN (_gp = ALIGN(16) + 0x7ff0);
|
|
.got : { *(.got) }
|
|
.dynamic : { *(.dynamic) }
|
|
.hash : { *(.hash) }
|
|
.dynsym : { *(.dynsym) }
|
|
.dynstr : { *(.dynstr) }
|
|
.pdr : { *(.pdr) }
|
|
.shstrtab : { *(.shstrtab) }
|
|
.symtab : { *(.symtab) }
|
|
.strtab : { *(.strtab) }
|
|
/DISCARD/ : { *(*) }
|
|
}
|