XCOFF ld testsuite fixes
[deliverable/binutils-gdb.git] / ld / testsuite / ld-scripts / sizeof.t
CommitLineData
252b5132
RH
1SECTIONS {
2 .text :
3 {
4 text_start = .;
5 tmpdir/sizeof.o
6 text_end = .;
7 }
8 .data :
9 {
10 data_start = .;
11 . = . + SIZEOF(.text);
12 data_end = .;
13 }
e553d5b2
AM
14 .bss :
15 {
16 . = 8;
17 *(.bss)
18 }
19}
252b5132
RH
20
21sizeof_text = SIZEOF(.text);
22sizeof_data = SIZEOF(.data);
This page took 1.168658 seconds and 4 git commands to generate.