diff options
author | Eric Andersen <andersen@codepoet.org> | 2002-11-06 20:16:27 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2002-11-06 20:16:27 +0000 |
commit | a6663f2b90a7124c1fbe2644dc082aecf1f24def (patch) | |
tree | cb858ce73dfa3bc09728efd20d2690308bfba2d6 /libc/sysdeps/linux/arm | |
parent | 6178647c33921c5ed9269a05e85f8c2054469103 (diff) |
Update soft-float handling
Diffstat (limited to 'libc/sysdeps/linux/arm')
-rw-r--r-- | libc/sysdeps/linux/arm/__longjmp.S | 2 | ||||
-rw-r--r-- | libc/sysdeps/linux/arm/setjmp.S | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/libc/sysdeps/linux/arm/__longjmp.S b/libc/sysdeps/linux/arm/__longjmp.S index 5a8f84b25..81d15706b 100644 --- a/libc/sysdeps/linux/arm/__longjmp.S +++ b/libc/sysdeps/linux/arm/__longjmp.S @@ -32,7 +32,7 @@ __longjmp: movs r0, r1 /* get the return value in place */ moveq r0, #1 /* can't let setjmp() return zero! */ -#if defined __UCLIBC_HAS_FLOATS__ && ! defined __SOFTFP__ +#if defined __UCLIBC_HAS_FLOATS__ && ! defined __UCLIBC_HAS_SOFT_FLOAT__ lfmfd f4, 4, [ip] ! /* load the floating point regs */ #endif diff --git a/libc/sysdeps/linux/arm/setjmp.S b/libc/sysdeps/linux/arm/setjmp.S index d73723708..eacd6c9b3 100644 --- a/libc/sysdeps/linux/arm/setjmp.S +++ b/libc/sysdeps/linux/arm/setjmp.S @@ -27,7 +27,7 @@ .align 4; __sigsetjmp: /* Save registers */ -#if defined __UCLIBC_HAS_FLOATS__ && ! defined __SOFTFP__ +#if defined __UCLIBC_HAS_FLOATS__ && ! defined __UCLIBC_HAS_SOFT_FLOAT__ sfmea f4, 4, [r0]! #endif stmia r0, {v1-v6, sl, fp, sp, lr} |