mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-03 04:12:10 +08:00
b325429b2f
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.
12 lines
181 B
Plaintext
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); }
|
|
}
|