Minor corrections from Jay Kulpinski <jskulpin@eng01.gdds.com>.

This first one below looked like it only belonged in a
    virtual memory environment.  The second one was causing
    problems without the PROVIDE() - I don't know why.
This commit is contained in:
Joel Sherrill
1999-04-14 22:33:30 +00:00
parent 2b283071c6
commit 3c87bb9cef
@@ -89,7 +89,7 @@ SECTIONS
important than losing a page of the virtual address space (note
that no actual memory is lost; the page which is skipped can not
be referenced). */
. = ALIGN(8) + 0x40000;
/* . = ALIGN(8) + 0x40000; */
.data :
{
*(.data)
@@ -161,8 +161,8 @@ SECTIONS
} >RAM
. = ALIGN(8) + 0x8000;
PROVIDE(__stack = .);
_end = . ;
PROVIDE (end = .);
PROVIDE(_end = .);
PROVIDE(end = .);
/* These are needed for ELF backends which have not yet been
converted to the new style linker. */