mirror of git://sourceware.org/git/glibc.git
* sysdeps/sparc/sparc32/elf/start.S: Define __data_start.
* sysdeps/sparc/sparc64/elf/start.S: Likewise.
This commit is contained in:
parent
f053c4f7d2
commit
87f37b48fa
|
|
@ -1,3 +1,8 @@
|
||||||
|
2005-04-17 David S. Miller <davem@davemloft.net>
|
||||||
|
|
||||||
|
* sysdeps/sparc/sparc32/elf/start.S: Define __data_start.
|
||||||
|
* sysdeps/sparc/sparc64/elf/start.S: Likewise.
|
||||||
|
|
||||||
2005-04-15 Roland McGrath <roland@redhat.com>
|
2005-04-15 Roland McGrath <roland@redhat.com>
|
||||||
|
|
||||||
* timezone/Makefile (zic-deps): New variable.
|
* timezone/Makefile (zic-deps): New variable.
|
||||||
|
|
|
||||||
|
|
@ -92,3 +92,9 @@ _start:
|
||||||
unimp
|
unimp
|
||||||
|
|
||||||
.size _start, .-_start
|
.size _start, .-_start
|
||||||
|
|
||||||
|
/* Define a symbol for the first piece of initialized data. */
|
||||||
|
.data
|
||||||
|
.globl __data_start
|
||||||
|
__data_start:
|
||||||
|
weak_alias (__data_start, data_start)
|
||||||
|
|
|
||||||
|
|
@ -93,3 +93,9 @@ _start:
|
||||||
illtrap 0
|
illtrap 0
|
||||||
|
|
||||||
.size _start, .-_start
|
.size _start, .-_start
|
||||||
|
|
||||||
|
/* Define a symbol for the first piece of initialized data. */
|
||||||
|
.data
|
||||||
|
.globl __data_start
|
||||||
|
__data_start:
|
||||||
|
weak_alias (__data_start, data_start)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue