]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
* sysdeps/powerpc/powerpc32/elf/start.S: Ensure .data is non-empty. cvs/fedora-glibc-20090414T2104
authorJakub Jelinek <jakub@redhat.com>
Tue, 14 Apr 2009 20:57:18 +0000 (20:57 +0000)
committerJakub Jelinek <jakub@redhat.com>
Tue, 14 Apr 2009 20:57:18 +0000 (20:57 +0000)
* 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.

ChangeLog
sysdeps/powerpc/powerpc32/elf/start.S
sysdeps/powerpc/powerpc64/elf/start.S
sysdeps/sparc/sparc32/elf/start.S
sysdeps/sparc/sparc64/elf/start.S

index 78b68717e8aed32759676f3abd497cb03a96b626..977136af006c67bfdea6f2a9f4b0a923dd50476c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+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.
+
 2009-04-14  Ulrich Drepper  <drepper@redhat.com>
 
        * sysdeps/unix/sysv/linux/kernel-features.h: SH also has
index bafd2ae00109daa40b574abbb7bf8c0c8d7907a6..a8abdca0c6903d281a29b2bbc36206d5c7fe045c 100644 (file)
@@ -1,5 +1,6 @@
 /* Startup code for programs linked with GNU libc.
-   Copyright (C) 1998,1999,2000,2001,2002,2003 Free Software Foundation, Inc.
+   Copyright (C) 1998,1999,2000,2001,2002,2003,2009
+   Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
@@ -98,4 +99,5 @@ END(_start)
        .section ".data"
        .globl  __data_start
 __data_start:
+       .long   0
 weak_alias (__data_start, data_start)
index c9119a26248d3f67063ba5d93c7cf7a5832a4dea..e559b878410ef5255aa72e3ae479d1aec27b8883 100644 (file)
@@ -1,5 +1,6 @@
 /* Startup code for programs linked with GNU libc.  PowerPC64 version.
-   Copyright (C) 1998,1999,2000,2001,2002,2003 Free Software Foundation, Inc.
+   Copyright (C) 1998,1999,2000,2001,2002,2003,2009
+   Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
@@ -83,4 +84,5 @@ END(_start)
        .section ".data"
        .globl  __data_start
 __data_start:
+       .long   0
 weak_alias (__data_start, data_start)
index 85adb7322f5b2162c01507d93924b160df6f09b9..7ff4bd68f67961a61323f91b6b181f38edc035ac 100644 (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)
index 650d3d3048d3355033cc2f124f14e760e3cadb3f..406ea0f55e1adda5e41be8e8a5563ffcc1ad96ce 100644 (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)