Re-add support for lbarx, lharx, stbcx. and sthcx. insns back to the E6500 cpu.
[binutils-gdb.git] / ld / testsuite / ld-scripts / defined6.t
blobf4ca38a90f0316b940363b8b102c5bb4caeb9ad6
1 SECTIONS
3   .text : { *(.text) }
4   .data : { *(.data) }
5   .bss  : { *(.bss) *(COMMON) }
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);