12345678910111213141516171819202122232425262728293031323334353637383940 |
- #include <features.h>
- #define _SETJMP_H
- #define _ASM
- #include <bits/setjmp.h>
- .globl __longjmp
- .type __longjmp,%function
- .align 4
- __longjmp:
- mov ip, r0
-
- movs r0, r1
- moveq r0, #1
- #if defined __UCLIBC_HAS_FLOATS__ && ! defined __UCLIBC_HAS_SOFT_FLOAT__
- lfmfd f4, 4, [ip] !
- #endif
- ldmia ip , {v1-v6, sl, fp, sp, pc}
- .size __longjmp,.-__longjmp
|