binutils-gdb/ld/testsuite/ld-scripts/assign-loc.t
Alan Modra 602f5faf49 * ld-scripts/assign-loc.d: New file. Test for assigning absolute
symbol to location counter.
	* ld-scripts/assign-loc.t: New file.  Linker script for above test.
	* ld-scripts/expr.exp: Add new assignment test.
2012-09-19 02:51:09 +00:00

18 lines
156 B
Perl

SECTIONS
{
. = 0x2000 ;
_start = .;
HEAP_SIZE = 0x100;
.heap : {
. = HEAP_SIZE;
. = ALIGN(4);
}
_end = .;
/DISCARD/ : { *(*) }
}