* gas/config/tc-avr.c: Change ISA for devices with USB support to
[external/binutils.git] / ld / testsuite / ld-arm / cortex-a8-fix-plt.ld
1 OUTPUT_ARCH(arm)
2 ENTRY(_start)
3 SECTIONS
4 {
5   . = 0x07000;
6   .hash : { *(.hash) }
7   .gnu.hash : { *(.gnu.hash) }
8   .dynsym : { *(.dynsym) }
9   .dynstr : { *(.dynstr) }
10   .rel.dyn : { *(.rel.dyn) }
11   .rel.plt : { *(.rel.plt) }
12   . = 0x08000;
13   .plt : { *(.plt) }
14   . = 0x08ff0;
15   .text : { *(.text) }
16   . = 0x10000;
17   .dynamic : { *(.dynamic) }
18 }