From 3c87bb9cefef527457d4fec9bfb79eff3d2f9066 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Wed, 14 Apr 1999 22:33:30 +0000 Subject: Minor corrections from Jay Kulpinski . 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. --- c/src/lib/libbsp/powerpc/psim/startup/linkcmds | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/c/src/lib/libbsp/powerpc/psim/startup/linkcmds b/c/src/lib/libbsp/powerpc/psim/startup/linkcmds index 2ed57ba0fc..d7867112d8 100644 --- a/c/src/lib/libbsp/powerpc/psim/startup/linkcmds +++ b/c/src/lib/libbsp/powerpc/psim/startup/linkcmds @@ -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. */ -- cgit v1.2.3