From df90903031f17d4d3b303a308d1cf300de999fa8 Mon Sep 17 00:00:00 2001 From: florian Date: Sat, 25 Sep 2004 18:43:45 +0000 Subject: [PATCH] * fixed symbol names --- rtl/linux/sparc/cprt0.as | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/rtl/linux/sparc/cprt0.as b/rtl/linux/sparc/cprt0.as index 32bd3d8147..b9d947c921 100644 --- a/rtl/linux/sparc/cprt0.as +++ b/rtl/linux/sparc/cprt0.as @@ -39,11 +39,11 @@ _start: /* Load the addresses of the user entry points. */ sethi %hi(PASCALMAIN), %o0 - sethi %hi(__libc_csu_init), %o3 - sethi %hi(__libc_csu_fini), %o4 + sethi %hi(_init), %o3 + sethi %hi(_fini), %o4 or %o0, %lo(PASCALMAIN), %o0 - or %o3, %lo(__libc_csu_init), %o3 - or %o4, %lo(__libc_csu_fini), %o4 + or %o3, %lo(_init), %o3 + or %o4, %lo(_fini), %o4 /* When starting a binary via the dynamic linker, %g1 contains the address of the shared library termination function, which will be @@ -74,8 +74,6 @@ _start: .data -.bss - .type ___fpc_brk_addr,@object .comm ___fpc_brk_addr,4 /* heap management */ .comm operatingsystem_parameter_envp,4 @@ -84,9 +82,12 @@ _start: /* $Log$ - Revision 1.4 2004-09-25 12:25:32 florian + Revision 1.5 2004-09-25 18:43:45 florian + * fixed symbol names + + Revision 1.4 2004/09/25 12:25:32 florian * first implementation Revision 1.3 2003/05/23 21:09:14 florian + dummy implementation readded to satisfy makefile -*/ \ No newline at end of file +*/