~terry.guo/+junk/xbinutils

« back to all changes in this revision

Viewing changes to src/binutils/ld/testsuite/ld-m68k/plt1.ld

  • Committer: Terry Guo
  • Date: 2012-09-05 06:50:40 UTC
  • Revision ID: terry.guo@arm.com-20120905065040-430c6mhm9b11a6r6
Tags: upstream-1.0
ImportĀ upstreamĀ versionĀ 1.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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
}