Patch: FYI: PR 29203 fix
Tom Tromey
tromey@redhat.com
Mon Sep 25 17:27:00 GMT 2006
I'm checking this in on the trunk, and I'm going to merge it to the RH
4.1 branch as well.
This fixes PR 29203, an fdlibm buglet.
Tom
2006-09-24 Mark Wielaard <mark@klomp.org>
Suggested by Aaron M. Ucko <ucko@debian.org>
Fixes bug #29203
* native/fdlibm/mprec.c (ulp): Define L as int32_t.
diff -u -r1.8 mprec.c
--- native/fdlibm/mprec.c 9 Jun 2006 16:16:35 -0000 1.8
+++ native/fdlibm/mprec.c 24 Sep 2006 15:13:17 -0000
@@ -666,7 +666,7 @@
_DEFUN (ulp, (_x), double _x)
{
union double_union x, a;
- register __Long L;
+ register int32_t L;
x.d = _x;
More information about the Java-patches
mailing list