summaryrefslogtreecommitdiffstats
path: root/binutils-2.25/ld/testsuite/ld-mips-elf/pic-and-nonpic-3a.ld
blob: 81d0d8aabf6cd056dabb19ee87814ebcab083a00 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
SECTIONS
{
  . = 0;
  .reginfo : { *(.reginfo) }

  . = ALIGN (0x400);
  .dynamic : { *(.dynamic) }
  .dynsym : { *(.dynsym) }
  .dynstr : { *(.dynstr) }

  . = ALIGN (0x400);
  .text : { *(.text) }

  . = ALIGN (0x400);
  .MIPS.stubs : { *(.MIPS.stubs) }

  . = ALIGN (0x10000);
  .data : { *(.data) }

  . = ALIGN (0x400);
  HIDDEN (_gp = . + 0x7ff0);
  .got : { *(.got) }
}