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]

[PATCH] Fix typos in 'Missing type in elf/start.S' patch


On Tue, Jun 05, 2001 at 08:21:01AM +0200, Andreas Jaeger wrote:
> "H . J . Lu" <hjl@lucon.org> writes:
> 
> > On Mon, Jun 04, 2001 at 09:52:07PM +0200, Andreas Jaeger wrote:
> >> > is missing from most of elf/start.S. On some platforms, the dissambler
> >> > won't dissamble if a symbol is not a function. Should I send a patch
> >> > to fix it?
> >> 
> >> Please do so,
> >> 
> > 
> > Here it is.
> 
> Thanks, I've committed it,

A few typos:

2001-06-06  Jakub Jelinek  <jakub@redhat.com>

	* sysdeps/cris/elf/start.S: Fix a typo introduced by last patch.
	* sysdeps/ia64/elf/start.S: Likewise.
	* sysdeps/sh/elf/start.S: Likewise.
	* sysdeps/s390/s390-32/elf/start.S: Likewise.
	* sysdeps/s390/s390-64/elf/start.S: Likewise.

--- libc/sysdeps/cris/elf/start.S.jj39	Wed Jun  6 10:07:21 2001
+++ libc/sysdeps/cris/elf/start.S	Wed Jun  6 12:46:05 2001
@@ -42,7 +42,7 @@
 
 	.text
 	.globl	_start
-	type _start,@function
+	.type _start,@function
 _start:
 	/* Clear the frame pointer, to mark the outermost frame.  */
 	moveq	0,r8
--- libc/sysdeps/ia64/elf/start.S.jj39	Wed Jun  6 10:07:26 2001
+++ libc/sysdeps/ia64/elf/start.S	Wed Jun  6 12:46:12 2001
@@ -37,7 +37,7 @@
 	.global _start
 
 	.proc _start
-	type _start,@function
+	.type _start,@function
 _start:
 	.prologue
 	{ .mlx
--- libc/sysdeps/sh/elf/start.S.jj39	Wed Jun  6 10:07:39 2001
+++ libc/sysdeps/sh/elf/start.S	Wed Jun  6 12:46:18 2001
@@ -43,7 +43,7 @@
 
 	.text
 	.globl _start
-	type _start,@function
+	.type _start,@function
 _start:
 	/* Clear the frame pointer since this is the outermost frame.  */
 	mov #0, r14
--- libc/sysdeps/s390/s390-32/elf/start.S.jj39	Wed Jun  6 10:07:38 2001
+++ libc/sysdeps/s390/s390-32/elf/start.S	Wed Jun  6 12:46:25 2001
@@ -39,7 +39,7 @@
 
 	.text
 	.globl _start
-	type _start,@function
+	.type _start,@function
 _start:
 	/* Setup pointer to literal pool of _start */
 	basr    %r13,0
--- libc/sysdeps/s390/s390-64/elf/start.S.jj39	Wed Jun  6 10:07:38 2001
+++ libc/sysdeps/s390/s390-64/elf/start.S	Wed Jun  6 12:46:31 2001
@@ -39,7 +39,7 @@
 
 	.text
 	.globl _start
-	type _start,@function
+	.type _start,@function
 _start:
 	/* Load argc and argv from stack.  */
 	la	%r4,8(%r15)		# get argv


    Jakub


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