Automatic date update in version.in
[binutils-gdb.git] / ld / testsuite / ld-scripts / defined6.t
blob9713aacf0ac288d9a0a1628bd950b67699cc2c4a
1 SECTIONS
3   . = SIZEOF_HEADERS;
4   .text : { *(.text) }
5   .data : { *(.data) }
6   .bss  : { *(.bss) *(COMMON) }
8 defined_pre = DEFINED (defined);
9 defined = 1;
10 defined_post = DEFINED (defined);
11 undef_pre = DEFINED (undef);
12 undef = 1;
13 undef_post = DEFINED (undef);
14 common_pre = DEFINED (common);
15 common = 1;
16 common_post = DEFINED (common);
17 weak_pre = DEFINED (weak);
18 weak = 1;
19 weak_post = DEFINED (weak);
20 undefweak_pre = DEFINED (undefweak);
21 undefweak = 1;
22 undefweak_post = DEFINED (undefweak);