This is the mail archive of the java-patches@sources.redhat.com mailing list for the Java project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Patch: fabs fix


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;

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]