PowerPC TPREL16_HA/LO reloc optimization
[deliverable/binutils-gdb.git] / ld / testsuite / ld-arm / ifunc-static.ld
1 OUTPUT_ARCH(arm)
2 ENTRY(_start)
3 SECTIONS
4 {
5 . = 0x08000;
6 .rel.dyn : {
7 PROVIDE_HIDDEN (__irel_start = .);
8 *(.rel.iplt)
9 PROVIDE_HIDDEN (__irel_end = .);
10 }
11 . = 0x09000;
12 .iplt : { *(.iplt) }
13 . = 0x0A000;
14 .text : { *(.text) }
15 . = 0x10000;
16 .data : { *(.data) }
17 . = 0x11000;
18 .got : { *(.got.plt) *(.igot.plt) *(.got) *(.igot) }
19 . = 0x12000;
20 .bss : { *(.bss) }
21 }
This page took 0.039801 seconds and 4 git commands to generate.