On Thu, 2006-09-14 at 09:30 +0100, Andrew Haley wrote:
> Mark Wielaard writes:
>  > Hi Andrew and Christian,
>  > 
>  > By now you two probably know mprec.c better than others. Could you take
>  > a look at this patch suggestion?
> 
> Looks resonable.

OK, since both you and Christian said it looks good I am checking this
in as:

2006-09-24  Mark Wielaard  <[EMAIL PROTECTED]>

       Suggested by Aaron M. Ucko <[EMAIL PROTECTED]>
       Fixes bug #29203
       * native/fdlibm/mprec.c (ulp): Define L as int32_t.

Cheers,

Mark

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;
 



Reply via email to