Преглед изворни кода

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 :)
Eric Andersen пре 20 година
родитељ
комит
c2e3235c99
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      libc/sysdeps/linux/powerpc/__longjmp.S

+ 1 - 1
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...)