Re-add support for lbarx, lharx, stbcx. and sthcx. insns back to the E6500 cpu.
[binutils-gdb.git] / ld / testsuite / ld-scripts / pr18963.t
blobb0cd7421eb61662d57eec4cec83e8e9442652c77
1 SECTIONS
3   . = 0x80000;
4   A = .;
5   .text :
6   {
7     _start = .;
8     . = 0x10000;
9   }
10   B = .;
11   .data :
12   {
13     . = 0x10000;
14   }
15   C = .;
16   .bss :
17   {
18     . = 0x10000;
19   }
20   D = A - C + B;
21   E = A + B - C;
22   /DISCARD/ : {*(*)}
25 ASSERT(D == E, "Addition is not commutative");