summaryrefslogtreecommitdiffstats
path: root/binutils-2.25/ld/testsuite/ld-mips-elf/emit-relocs-1.ld
blob: 1879ef4cbe7be146cc1ac21101c2b19141dff6cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
ENTRY(_start)
SECTIONS
{
  . = 0x80000;
  .text : { *(.text) }

  . = ALIGN (0x400);
  .merge1 : { *(.merge1) }

  . = ALIGN (0x400);
  .merge2 : { *(.merge2) }

  . = ALIGN (0x400);
  .merge3 : { *(.merge3) }

  . = ALIGN (0x400);
  .data : { *(.data) }

  /DISCARD/ : { *(*) }
}