Check corrupt VTENTRY entry in bfd_elf_gc_record_vtentry
[deliverable/binutils-gdb.git] / ld / testsuite / ld-m68k / plt1.ld
1 SECTIONS
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.029873 seconds and 4 git commands to generate.