* elf32-m68k.c (elf_m68k_relocate_section): Don't ignore existing
[deliverable/binutils-gdb.git] / ld / testsuite / ld-m68k / plt1.ld
CommitLineData
cc3e26be
RS
1SECTIONS
2{
3 . = 0x20000;
4 .interp : { *(.interp) }
5 .hash : { *(.hash) }
6 .dynsym : { *(.dynsym) }
7 .dynstr : { *(.dynstr) }
8
9 . = ALIGN (0x400);
10 .rela.plt : { *(.rela.plt) }
11
12 . = ALIGN (0x400);
13 .plt : { *(.plt) }
14
15 . = ALIGN (0x400);
16 .text : { *(.text) }
17
18 . = ALIGN (0x10000);
19 .dynamic : { *(.dynamic) }
20
21 . = ALIGN (0x400);
22 .got : { *(.got.plt) *(.got) }
23}
This page took 0.09154 seconds and 4 git commands to generate.