From cd411309b5af27b1a02f324174d1caad98bc0927 Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Fri, 14 May 2004 10:51:16 +0000 Subject: __data_start needs to be added to all crt0.S files that don't currently have it. It is used by the boehm gc, amoung other things. --- libc/sysdeps/linux/v850/crt0.S | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) (limited to 'libc/sysdeps/linux/v850') diff --git a/libc/sysdeps/linux/v850/crt0.S b/libc/sysdeps/linux/v850/crt0.S index fe36d0af8..11d7bb5aa 100644 --- a/libc/sysdeps/linux/v850/crt0.S +++ b/libc/sysdeps/linux/v850/crt0.S @@ -7,7 +7,7 @@ * This file is subject to the terms and conditions of the GNU Lesser * General Public License. See the file COPYING.LIB in the main * directory of this archive for more details. - * + * * Written by Miles Bader */ @@ -18,7 +18,7 @@ */ .text -C_ENTRY(start): +C_ENTRY(start): ld.w 0[sp], r6 // Arg 0: argc addi 4, sp, r7 // Arg 1: argv @@ -46,3 +46,12 @@ C_ENTRY(start): we can be sure that `main' actually gets linked in. */ L_dummy_main_reference: .long C_SYMBOL_NAME(main) + +/* Define a symbol for the first piece of initialized data. */ + .data + .globl __data_start +__data_start: + .long 0 + .weak data_start + data_start = __data_start + -- cgit v1.2.3