Suggested by Aaron M.

2006-09-25  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.

From-SVN: r117197
This commit is contained in:
Mark Wielaard 2006-09-25 17:30:21 +00:00 committed by Tom Tromey
parent 291ad36e62
commit 902f7d1afb
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2006-09-25 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.
2006-09-22 David Daney <ddaney@avtrex.com>
PR classpath/28661

View File

@ -666,7 +666,7 @@ double
_DEFUN (ulp, (_x), double _x)
{
union double_union x, a;
register __Long L;
register int32_t L;
x.d = _x;