Append $PLT_CFLAGS to CC for NOCROSSREFS tests
[deliverable/binutils-gdb.git] / ld / testsuite / ld-scripts / defined6.t
1 SECTIONS
2 {
3 .text : { *(.text) }
4 .data : { *(.data) }
5 .bss : { *(.bss) *(COMMON) }
6 }
7 defined_pre = DEFINED (defined);
8 defined = 1;
9 defined_post = DEFINED (defined);
10 undef_pre = DEFINED (undef);
11 undef = 1;
12 undef_post = DEFINED (undef);
13 common_pre = DEFINED (common);
14 common = 1;
15 common_post = DEFINED (common);
16 weak_pre = DEFINED (weak);
17 weak = 1;
18 weak_post = DEFINED (weak);
19 undefweak_pre = DEFINED (undefweak);
20 undefweak = 1;
21 undefweak_post = DEFINED (undefweak);
This page took 0.031358 seconds and 4 git commands to generate.