XCOFF ld testsuite fixes
[deliverable/binutils-gdb.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.028745 seconds and 4 git commands to generate.