binutils-gdb/ld/testsuite/ld-scripts/pr18963.t
Stephen Casner 0203cad215 Fix the test for PR 18963 so that it will work on 16-bit targets.
PR 18963
	* testsuite/ld-scripts/pr18963.t: Reduce section sizes to fit in
	16-bit address space.
	* testsuite/ld-scripts/pr18963.d: Likewise.
2020-04-17 14:16:27 +01:00

29 lines
308 B
Raku

SECTIONS
{
. = 0x800;
A = .;
.text :
{
_start = .;
*(.text)
. = 0x100;
}
B = .;
.data :
{
*(.data)
. = 0x100;
}
C = .;
.bss :
{
*(.bss)
. = 0x100;
}
D = A - C + B;
E = A + B - C;
/DISCARD/ : {*(*)}
}
ASSERT(D == E, "Addition is not commutative");