[MIPS] Implement O32 FPXX, FP64 and FP64A ABI extensions
[deliverable/binutils-gdb.git] / ld / testsuite / ld-mips-elf / pic-and-nonpic-3b.ld
1 SECTIONS
2 {
3 . = 0x40000 + SIZEOF_HEADERS;
4 .interp : { *(.interp) }
5
6 . = 0x41000;
7 .reginfo : { *(.reginfo) }
8 .hash : { *(.hash) }
9 .dynsym : { *(.dynsym) }
10 .dynstr : { *(.dynstr) }
11
12 . = 0x42000;
13 .dynamic : { *(.dynamic) }
14
15 . = 0x43000;
16 .rel.plt : { *(.rel.plt) }
17 .plt : { *(.plt) }
18
19 . = 0x44000;
20 .text : { *(.text) }
21 .MIPS.stubs : { *(.MIPS.stubs) }
22
23 . = 0x80000;
24 .rld_map : { *(.rld_map) }
25
26 . = 0x81000;
27 .got.plt : { *(.got.plt) }
28
29 . = 0xa0000;
30 HIDDEN (_gp = . + 0x7ff0);
31 .got : { *(.got) }
32
33 . = 0xa1000;
34 .data : { *(.data) }
35
36 /DISCARD/ : { *(.MIPS.abiflags) }
37 }
This page took 0.03547 seconds and 4 git commands to generate.