binutils-gdb/ld/testsuite/ld-mmix/mmohdr1.ld
Alan Modra b325429b2f ld script lower-case absolute and sizeof_headers
I think these happened by accident, so let's see what breaks if they
are removed.

	* ldlex.l: Remove lower case "absolute" and "sizeof_headers"
	in non-mri mode.
	* ld.texi: Remove sizeof_headers index.
	* testsuite/ld-mmix/mmohdr1.ld: Use SIZEOF_HEADERS.
2021-08-13 22:44:36 +09:30

12 lines
181 B
Plaintext

OUTPUT_ARCH(mmix)
OUTPUT_FORMAT("mmo")
ENTRY(Main)
SECTIONS
{
.text 0x100 + SIZEOF_HEADERS :
{ *(.text); Main = _start; }
.MMIX.reg_contents :
{ *(.MMIX.reg_contents); }
}