Patch: fabs fix
Tom Tromey
tromey@redhat.com
Thu Jan 25 11:06:00 GMT 2001
After much struggling against local configuration weirdess, I got my
Solaris build to complete. I'm checking in this fix to the fabs()
patch.
2001-01-24 Tom Tromey <tromey@redhat.com>
* java/lang/sf_fabs.c: Use uint32_t, not __uint32_t.
Tom
Index: java/lang/sf_fabs.c
===================================================================
RCS file: /cvs/gcc/egcs/libjava/java/lang/sf_fabs.c,v
retrieving revision 1.1
diff -u -r1.1 sf_fabs.c
--- sf_fabs.c 2001/01/24 17:43:25 1.1
+++ sf_fabs.c 2001/01/25 19:04:25
@@ -26,7 +26,7 @@
float x;
#endif
{
- __uint32_t ix;
+ uint32_t ix;
GET_FLOAT_WORD(ix,x);
SET_FLOAT_WORD(x,ix&0x7fffffff);
return x;
More information about the Java-patches
mailing list