repo.or.cz
/
binutils-gdb.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Re-add support for lbarx, lharx, stbcx. and sthcx. insns back to the E6500 cpu.
[binutils-gdb.git]
/
ld
/
testsuite
/
ld-scripts
/
pr18963.t
blob
b0cd7421eb61662d57eec4cec83e8e9442652c77
1
SECTIONS
2
{
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/ : {*(*)}
23
}
24
25
ASSERT(D == E, "Addition is not commutative");