diff options
author | Eric Andersen <andersen@codepoet.org> | 2004-01-02 10:52:38 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2004-01-02 10:52:38 +0000 |
commit | 47f3643602a9a263e3c7c12282b634458b76c33f (patch) | |
tree | 0f981eb9391b066f87e4d141b40a07021b6eb238 /libc | |
parent | be5aabf5344c5f797fffa3c3ae9347d02ad6cd2e (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.
Diffstat (limited to 'libc')
-rw-r--r-- | libc/sysdeps/linux/powerpc/setjmp.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/sysdeps/linux/powerpc/setjmp.S b/libc/sysdeps/linux/powerpc/setjmp.S index e47f3666a..b1625b615 100644 --- a/libc/sysdeps/linux/powerpc/setjmp.S +++ b/libc/sysdeps/linux/powerpc/setjmp.S @@ -23,7 +23,7 @@ #define _SETJMP_H #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...) |