e8c5102438fa8aaf685966be23202af429acd7c6
[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 /DISCARD/ : { *(*) }
17 }
This page took 0.043703 seconds and 3 git commands to generate.