This is the mail archive of the
java-patches@sources.redhat.com
mailing list for the Java project.
Patch: fabs fix
- To: Java Patch List <java-patches at sourceware dot cygnus dot com>
- Subject: Patch: fabs fix
- From: Tom Tromey <tromey at redhat dot com>
- Date: 25 Jan 2001 12:31:40 -0700
- Reply-To: tromey at redhat dot com
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;