]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - ld/testsuite/ld-pe/image_size.t
93f2f50b10fc8b8d3cd4f611830f321d033c6085
[thirdparty/binutils-gdb.git] / ld / testsuite / ld-pe / image_size.t
1 SECTIONS
2 {
3 . = SIZEOF_HEADERS;
4 . = ALIGN(__section_alignment__);
5 .text __image_base__ + ( __section_alignment__ < 0x1000 ? . : __section_alignment__ ) :
6 {
7 *(.text)
8 }
9 . = . + 0x1000;
10 .data BLOCK(__section_alignment__) :
11 {
12 *(.data)
13 }
14 /DISCARD/ : { *(*) }
15 }