123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- #define _ASM
- #define _SETJMP_H
- #include <bits/setjmp.h>
- .globl _setjmp;
- .type _setjmp,@function
- .align 4;
- _setjmp:
- xorl %eax, %eax
- movl 4 , %edx
-
- movl %ebx,
- movl %esi,
- movl %edi,
- leal 4 , %ecx
- movl %ecx,
- movl 0 , %ecx
- movl %ecx,
- movl %ebp,
- movl %eax, JB_SIZE
- ret
- .size _setjmp,.-_setjmp;
|