]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - ld/testsuite/ld-scripts/empty-aligned.t
bfd/
[thirdparty/binutils-gdb.git] / ld / testsuite / ld-scripts / empty-aligned.t
1 SECTIONS
2 {
3 .text : { *(.text) }
4 .text2 :
5 {
6 . = ALIGN(4096);
7 *(.text2)
8 }
9 .text3 :
10 {
11 *(.text3)
12 . = ALIGN(4096);
13 }
14 .data : { *(.data) }
15 .bss : { *(.bss) }
16 }