summaryrefslogtreecommitdiffstats
path: root/binutils-2.25/ld/testsuite/ld-mips-elf/mips16-pic-1.ld
blob: 4afc589023c340c2f8378310a1eb44c4a770ca08 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
SECTIONS
{
  . = 0x40000;
  .interp : { *(.interp) }
  .dynsym : { *(.dynsym) }
  .dynstr : { *(.dynstr) }
  .dynamic : { *(.dynamic) }
  .reginfo : { *(.reginfo) }
  .hash : { *(.hash) }
  . = ALIGN (0x400);
  .text : { *(.text) *(.mips16.*) }
  .MIPS.stubs : { *(.MIPS.stubs) }
  . = ALIGN (0x400);
  .rel.plt : { *(.rel.plt) }
  .rel.dyn : { *(.rel.dyn) }
  . = 0x50000;
  HIDDEN (_gp = . + 0x7ff0);
  .got : { *(.got) }
  . = 0x50400;
  .data : { *(.data) }
  .rld_map : { *(.rld_map) }
}