diff options
author | Eric Andersen <andersen@codepoet.org> | 2004-01-02 11:12:16 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2004-01-02 11:12:16 +0000 |
commit | c2e3235c998fb528b6485e0329624c75a92cb9a5 (patch) | |
tree | cc8daa57d81ce53afed92a8e278b8e106f983d9c | |
parent | 47f3643602a9a263e3c7c12282b634458b76c33f (diff) |
rohde at soap dot adsl dot dk writes:
The macro to do some floating point checks in libc/sysdeps/linux/powerpc/setjmp.S is incorrect.
The following should fix it.
Same applies to uClibc/libc/sysdeps/linux/powerpc/__longjmp.S
Hope there aren't other files I've missed :)
-rw-r--r-- | libc/sysdeps/linux/powerpc/__longjmp.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/sysdeps/linux/powerpc/__longjmp.S b/libc/sysdeps/linux/powerpc/__longjmp.S index b1aa32840..874354e5a 100644 --- a/libc/sysdeps/linux/powerpc/__longjmp.S +++ b/libc/sysdeps/linux/powerpc/__longjmp.S @@ -24,7 +24,7 @@ #include <bits/setjmp.h> -#ifdef __UCLIBC_HAS_FLOATS__ && ! defined __UCLIBC_HAS_SOFT_FLOAT__ +#if defined __UCLIBC_HAS_FLOATS__ && ! defined __UCLIBC_HAS_SOFT_FLOAT__ #define FP(x...) x #else #define FP(x...) |