1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-29 11:41:21 +03:00

* sysdeps/powerpc/powerpc32/elf/start.S: Ensure .data is non-empty.

* sysdeps/powerpc/powerpc64/elf/start.S: Likewise. 
* sysdeps/sparc/sparc32/elf/start.S: Likewise. 
* sysdeps/sparc/sparc64/elf/start.S: Likewise.
2009-04-14  Jakub Jelinek  <jakub@redhat.com>

	* sysdeps/powerpc/powerpc32/elf/start.S: Ensure .data is non-empty.
	* sysdeps/powerpc/powerpc64/elf/start.S: Likewise.
	* sysdeps/sparc/sparc32/elf/start.S: Likewise.
	* sysdeps/sparc/sparc64/elf/start.S: Likewise.
This commit is contained in:
Jakub Jelinek
2009-04-14 20:57:18 +00:00
parent b8a3bd8256
commit e42e88abb6
5 changed files with 19 additions and 4 deletions

View File

@ -1,5 +1,6 @@
/* Startup code for elf32-sparc
Copyright (C) 1997, 1998, 2002, 2004, 2007 Free Software Foundation, Inc.
Copyright (C) 1997, 1998, 2002, 2004, 2007, 2009
Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Richard Henderson <richard@gnu.ai.mit.edu>, 1997.
@ -96,4 +97,5 @@ _start:
.data
.globl __data_start
__data_start:
.long 0
weak_alias (__data_start, data_start)

View File

@ -1,5 +1,6 @@
/* Startup code for elf64-sparc
Copyright (C) 1997, 1998, 2002, 2004, 2007 Free Software Foundation, Inc.
Copyright (C) 1997, 1998, 2002, 2004, 2007, 2009
Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Richard Henderson <richard@gnu.ai.mit.edu>, 1997.
@ -97,4 +98,5 @@ _start:
.data
.globl __data_start
__data_start:
.long 0
weak_alias (__data_start, data_start)