OSDN Git Service

make sure we include features.h to get the hidden define
authorMike Frysinger <vapier@gentoo.org>
Fri, 1 Jul 2005 00:35:16 +0000 (00:35 -0000)
committerMike Frysinger <vapier@gentoo.org>
Fri, 1 Jul 2005 00:35:16 +0000 (00:35 -0000)
libc/sysdeps/linux/x86_64/__longjmp.S
libc/sysdeps/linux/x86_64/setjmp.S

index 40e459e..d4bd7fc 100644 (file)
@@ -23,9 +23,9 @@
 /* Jump to the position specified by ENV, causing the
    setjmp call there to return VAL, or 1 if VAL is 0.
    void __longjmp (__jmp_buf env, int val).  */
-.globl __longjmp;
-.type  __longjmp,@function;
-.align 16;
+.global __longjmp
+.type   __longjmp,@function
+.align 16
 __longjmp:
        /* Restore registers.  */
        movq (JB_RBX*8)(%rdi),%rbx
@@ -42,4 +42,4 @@ __longjmp:
        movq (JB_PC*8)(%rdi),%rdx
        movq (JB_RSP*8)(%rdi),%rsp
        jmpq *%rdx
-.size __longjmp,.-__longjmp;
+.size __longjmp,.-__longjmp
index cb56024..13ad50d 100644 (file)
@@ -21,9 +21,9 @@
 #define _SETJMP_H
 #include <bits/setjmp.h>
 
-.globl __sigsetjmp;
-.type    __sigsetjmp,@function
-.align 4;
+.global __sigsetjmp
+.type   __sigsetjmp,@function
+.align 4
 __sigsetjmp:
        /* Save registers.  */
        movq %rbx, (JB_RBX*8)(%rdi)
@@ -43,4 +43,4 @@ __sigsetjmp:
 #else
        jmp __sigjmp_save
 #endif
-.size __sigsetjmp,.-__sigsetjmp;
+.size __sigsetjmp,.-__sigsetjmp