This is the mail archive of the libc-alpha@sources.redhat.com mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

PATCH: Add type to __data_start


This patch adds type to __data_start.


H.J.
---
2003-02-04  H.J. Lu  <hjl@gnu.org>

	* sysdeps/alpha/elf/start.S (__data_start): Add type.
	* sysdeps/arm/elf/start.S (__data_start): Likewise.
	* sysdeps/cris/elf/start.S (__data_start): Likewise.
	* sysdeps/hppa/elf/start.S (__data_start): Likewise.
	* sysdeps/i386/elf/start.S (__data_start): Likewise.
	* sysdeps/ia64/elf/start.S (__data_start): Likewise.
	* sysdeps/m68k/elf/start.S (__data_start): Likewise.
	* sysdeps/mips/elf/start.S (__data_start): Likewise.
	* sysdeps/sh/elf/start.S (__data_start): Likewise.
	* sysdeps/x86_64/elf/start.S (__data_start): Likewise.

--- sysdeps/alpha/elf/start.S.type	Mon Dec 16 09:32:17 2002
+++ sysdeps/alpha/elf/start.S	Tue Feb  4 14:33:02 2003
@@ -64,6 +64,7 @@ weak_alias(_start, __start)
 /* Define a symbol for the first piece of initialized data.  */
 	.data
 	.globl __data_start
+	.type __data_start,@object
 __data_start:
 	.long 0
 	.weak data_start
--- sysdeps/arm/elf/start.S.type	Mon Dec 30 10:39:36 2002
+++ sysdeps/arm/elf/start.S	Tue Feb  4 14:33:25 2003
@@ -79,6 +79,7 @@ _start:
 /* Define a symbol for the first piece of initialized data.  */
 	.data
 	.globl __data_start
+	.type __data_start,#object
 __data_start:
 	.long 0
 	.weak data_start
--- sysdeps/cris/elf/start.S.type	Mon Dec 16 09:32:18 2002
+++ sysdeps/cris/elf/start.S	Tue Feb  4 14:33:36 2003
@@ -118,6 +118,7 @@ _start:
 /* Define a symbol for the first piece of initialized data.  */
 	.data
 	.globl __data_start
+	.type __data_start,@object
 __data_start:
 	.long	0
 	.weak	data_start
--- sysdeps/hppa/elf/start.S.type	Mon Dec 16 09:32:22 2002
+++ sysdeps/hppa/elf/start.S	Tue Feb  4 14:33:46 2003
@@ -74,6 +74,7 @@ _start:
 /* Define a symbol for the first piece of initialized data.  */
 	.data
 	.globl __data_start
+	.type __data_start,@object
 __data_start:
 	.long 0
 	.weak data_start
--- sysdeps/i386/elf/start.S.type	Mon Dec 16 09:32:24 2002
+++ sysdeps/i386/elf/start.S	Tue Feb  4 14:34:26 2003
@@ -93,6 +93,7 @@ _fp_hw:	.long 3
 /* Define a symbol for the first piece of initialized data.  */
 	.data
 	.globl __data_start
+	.type __data_start,@object
 __data_start:
 	.long 0
 	.weak data_start
--- sysdeps/ia64/elf/start.S.type	Mon Dec 16 09:32:27 2002
+++ sysdeps/ia64/elf/start.S	Tue Feb  4 14:34:37 2003
@@ -93,6 +93,7 @@ _start:
 /* Define a symbol for the first piece of initialized data.  */
 	.data
 	.globl __data_start
+	.type __data_start,@object
 __data_start:
 	.long 0
 	.weak data_start
--- sysdeps/m68k/elf/start.S.type	Mon Dec 16 09:32:29 2002
+++ sysdeps/m68k/elf/start.S	Tue Feb  4 14:34:52 2003
@@ -77,6 +77,7 @@ _start:
 /* Define a symbol for the first piece of initialized data.  */
 	.data
 	.globl __data_start
+	.type __data_start,@object
 __data_start:
 	.long 0
 	.weak data_start
--- sysdeps/mips/elf/start.S.type	Mon Dec 16 09:32:35 2002
+++ sysdeps/mips/elf/start.S	Tue Feb  4 14:35:01 2003
@@ -94,6 +94,7 @@ hlt:	b hlt			/* Crash if somehow it does
 /* Define a symbol for the first piece of initialized data.  */
 	.data
 	.globl __data_start
+	.type __data_start,@object
 __data_start:
 	.long 0
 	.weak data_start
--- sysdeps/sh/elf/start.S.type	Mon Dec 16 09:32:44 2002
+++ sysdeps/sh/elf/start.S	Tue Feb  4 14:35:15 2003
@@ -85,6 +85,7 @@ L_abort:
 /* Define a symbol for the first piece of initialized data.  */
 	.data
 	.globl __data_start
+	.type __data_start,@object
 __data_start:
 	.long 0
 	.weak data_start
--- sysdeps/x86_64/elf/start.S.type	Mon Dec 16 09:33:22 2002
+++ sysdeps/x86_64/elf/start.S	Tue Feb  4 14:35:23 2003
@@ -89,6 +89,7 @@ _start:
 /* Define a symbol for the first piece of initialized data.  */
 	.data
 	.globl __data_start
+	.type __data_start,@object
 __data_start:
 	.long 0
 	.weak data_start


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]