binutils: Make some functions static in dwarf.c
[deliverable/binutils-gdb.git] / ld / testsuite / ld-scripts / defined6.t
1 SECTIONS
2 {
3 . = SIZEOF_HEADERS;
4 .text : { *(.text) }
5 .data : { *(.data) }
6 .bss : { *(.bss) *(COMMON) }
7 }
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);
This page took 0.029617 seconds and 4 git commands to generate.