[uClibc-cvs] svn commit: trunk/uClibc/libc/sysdeps/linux/x86_64

vapier at uclibc.org vapier at uclibc.org
Wed Jun 29 02:12:50 UTC 2005


Author: vapier
Date: 2005-06-28 20:12:50 -0600 (Tue, 28 Jun 2005)
New Revision: 10623

Log:
syntax tweaks

Modified:
   trunk/uClibc/libc/sysdeps/linux/x86_64/crti.S
   trunk/uClibc/libc/sysdeps/linux/x86_64/crtn.S


Changeset:
Modified: trunk/uClibc/libc/sysdeps/linux/x86_64/crti.S
===================================================================
--- trunk/uClibc/libc/sysdeps/linux/x86_64/crti.S	2005-06-29 01:07:04 UTC (rev 10622)
+++ trunk/uClibc/libc/sysdeps/linux/x86_64/crti.S	2005-06-29 02:12:50 UTC (rev 10623)
@@ -1,14 +1,16 @@
 /* glibc's sysdeps/x86_64/elf/initfini.c used for reference [PROLOG] */
 
+
+
 .section .init
-.globl _init
-.type	_init, @function
+.global  _init
+.type    _init, @function
 _init:
 	subq	$8, %rsp
 
 
 .section .fini
-.globl _fini
-.type	_fini, @function
+.global  _fini
+.type    _fini, @function
 _fini:
 	subq	$8, %rsp

Modified: trunk/uClibc/libc/sysdeps/linux/x86_64/crtn.S
===================================================================
--- trunk/uClibc/libc/sysdeps/linux/x86_64/crtn.S	2005-06-29 01:07:04 UTC (rev 10622)
+++ trunk/uClibc/libc/sysdeps/linux/x86_64/crtn.S	2005-06-29 02:12:50 UTC (rev 10623)
@@ -2,18 +2,17 @@
 
 .file	"initfini.c"
 
-
 .section .init
-.globl _init
-.type	_init, @function
-	addq	$8, %rsp
+.global  _init
+.type    _init, @function
+	addq $8, %rsp
 	ret
-.size	_init, .-_init
+.size _init,.-_init
 
 
 .section .fini
-.globl _fini
-.type	_fini, @function
-	addq	$8, %rsp
+.global  _fini
+.type    _fini, @function
+	addq $8, %rsp
 	ret
-.size	_fini, .-_fini
+.size _fini, .-_fini




More information about the uClibc-cvs mailing list