OSDN Git Service

use % as the function marker instead of @
authorMike Frysinger <vapier@gentoo.org>
Wed, 6 Jul 2005 01:24:17 +0000 (01:24 -0000)
committerMike Frysinger <vapier@gentoo.org>
Wed, 6 Jul 2005 01:24:17 +0000 (01:24 -0000)
libc/sysdeps/linux/x86_64/__longjmp.S
libc/sysdeps/linux/x86_64/bsd-_setjmp.S
libc/sysdeps/linux/x86_64/bsd-setjmp.S
libc/sysdeps/linux/x86_64/clone.S
libc/sysdeps/linux/x86_64/crt1.S
libc/sysdeps/linux/x86_64/crti.S
libc/sysdeps/linux/x86_64/crtn.S
libc/sysdeps/linux/x86_64/setjmp.S
libc/sysdeps/linux/x86_64/syscall.S
libc/sysdeps/linux/x86_64/vfork.S

index d4bd7fc..aa47b72 100644 (file)
@@ -24,7 +24,7 @@
    setjmp call there to return VAL, or 1 if VAL is 0.
    void __longjmp (__jmp_buf env, int val).  */
 .global __longjmp
-.type   __longjmp,@function
+.type   __longjmp,%function
 .align 16
 __longjmp:
        /* Restore registers.  */
index 89676bf..91c5879 100644 (file)
 #define _SETJMP_H
 #include <bits/setjmp.h>
 
-.globl _setjmp;
-.type    _setjmp,@function
-.align 16;
+.global _setjmp
+.type   _setjmp,%function
+.align  16
 _setjmp:
        xorq %rsi, %rsi
-       jmp __sigsetjmp
-.size _setjmp,.-_setjmp;
+       jmp __sigsetjmp@PLT
+.size _setjmp,.-_setjmp
index 340d596..21d0191 100644 (file)
 #define _SETJMP_H
 #include <bits/setjmp.h>
 
-.globl setjmp;
-.type    setjmp,@function
-.align 16;
+.global setjmp
+.type   setjmp,%function
+.align  16
 setjmp:
        movq $1, %rsi
-       jmp __sigsetjmp
-.size setjmp,.-setjmp;
+       jmp __sigsetjmp@PLT
+.size setjmp,.-setjmp
index 96cfbbd..156714e 100644 (file)
@@ -52,7 +52,7 @@
 
 .text
 .global __clone
-.type   __clone,@function
+.type   __clone,%function
 .align 4
 __clone:
        /* Sanity check arguments.  */
index 49ec969..ddd1e56 100644 (file)
 
 .text
 .global _start
-.type   _start,@function
+.type   _start,%function
 #if defined(__UCLIBC_CTOR_DTOR__)
-.type   _init,@function
-.type   _fini,@function
+.type   _init,%function
+.type   _fini,%function
 #else
 .weak   _init
 .weak   _fini
 #endif
-.type   __uClibc_main,@function
+.type   __uClibc_main,%function
 /* Stick in a dummy reference to main(), so that if an application
  * is linking when the main() function is in a static library (.a)
  * we can be sure that main() actually gets linked in */
-.type   main,@function
+.type   main,%function
 
 _start:
        /* Clear the frame pointer.  The ABI suggests this be done, to mark
index 6485137..11491db 100644 (file)
@@ -4,13 +4,13 @@
 
 .section .init
 .global  _init
-.type    _init, @function
+.type    _init, %function
 _init:
        subq    $8, %rsp
 
 
 .section .fini
 .global  _fini
-.type    _fini, @function
+.type    _fini, %function
 _fini:
        subq    $8, %rsp
index f68f9d0..5b110d9 100644 (file)
@@ -4,7 +4,7 @@
 
 .section .init
 .global  _init
-.type    _init, @function
+.type    _init, %function
        addq $8, %rsp
        ret
 .size _init,.-_init
@@ -12,7 +12,7 @@
 
 .section .fini
 .global  _fini
-.type    _fini, @function
+.type    _fini, %function
        addq $8, %rsp
        ret
 .size _fini, .-_fini
index 13ad50d..a44f968 100644 (file)
@@ -22,7 +22,7 @@
 #include <bits/setjmp.h>
 
 .global __sigsetjmp
-.type   __sigsetjmp,@function
+.type   __sigsetjmp,%function
 .align 4
 __sigsetjmp:
        /* Save registers.  */
index 23ff07a..f6273b7 100644 (file)
@@ -25,7 +25,7 @@
 
 .text
 .globl syscall
-.type  syscall,@function
+.type  syscall,%function
 .align 16
 syscall:
        movq %rdi, %rax         /* Syscall number -> rax.  */
index 4c64ead..dde29e9 100644 (file)
@@ -32,7 +32,7 @@
 
 .text
 .global __vfork
-.type  __vfork,@function
+.type  __vfork,%function
 .align 16
 __vfork: