Przeglądaj źródła

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 lat temu
rodzic
commit
c2e3235c99
1 zmienionych plików z 1 dodań i 1 usunięć
  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...)