[uClibc-cvs] uClibc/libc/sysdeps/linux/powerpc __longjmp.S,1.2,1.3

Erik Andersen andersen at uclibc.org
Fri Jan 2 11:12:19 UTC 2004


Update of /var/cvs/uClibc/libc/sysdeps/linux/powerpc
In directory nail:/tmp/cvs-serv27796

Modified Files:
	__longjmp.S 
Log Message:
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 :)



Index: __longjmp.S
===================================================================
RCS file: /var/cvs/uClibc/libc/sysdeps/linux/powerpc/__longjmp.S,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- __longjmp.S	3 Jul 2003 10:40:18 -0000	1.2
+++ __longjmp.S	2 Jan 2004 11:12:16 -0000	1.3
@@ -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...)




More information about the uClibc-cvs mailing list