]> Git Repo - binutils.git/blob - ld/testsuite/ld-scripts/assign-loc.t
Automatic date update in version.in
[binutils.git] / ld / testsuite / ld-scripts / assign-loc.t
1 SECTIONS
2 {
3   . = 0x2000 ;
4
5   _start = .;
6
7   HEAP_SIZE = 0x100;
8
9   .heap : {
10     . = HEAP_SIZE;
11     . = ALIGN(4);
12   }
13
14   _end = .;
15
16   .text : { *(.text) }
17   .data : { *(.data) }
18   .bss : { *(.bss) }
19   /DISCARD/ : { *(*) }
20 }
This page took 0.025437 seconds and 4 git commands to generate.