Skip to content
Snippets Groups Projects
Commit 91b0770d authored by Simon Marlow's avatar Simon Marlow
Browse files

[project @ 1999-02-22 10:51:18 by simonm]

- Fix off-by-one in __encodeFloat;
- Tidy up __encodeDouble a bit.
parent 114da353
No related merge requests found
/* -----------------------------------------------------------------------------
* $Id: StgPrimFloat.c,v 1.4 1999/02/18 12:26:12 simonm Exp $
* $Id: StgPrimFloat.c,v 1.5 1999/02/22 10:51:18 simonm Exp $
*
* (c) The GHC Team, 1998-1999
*
......@@ -51,13 +51,8 @@ __encodeDouble (I_ size, StgByteArray ba, I_ e) /* result = s * 2^e */
I_ i;
/* Convert MP_INT to a double; knows a lot about internal rep! */
i = __abs(size)-1;
if (i < 0) {
r = 0.0;
} else {
for (r = arr[i], i--; i >= 0; i--)
r = r * GMP_BASE + arr[i];
}
for(r = 0.0, i = __abs(size)-1; i >= 0; i--)
r = (r * GMP_BASE) + arr[i];
/* Now raise to the exponent */
if ( r != 0.0 ) /* Lennart suggests this avoids a bug in MIPS's ldexp */
......@@ -98,7 +93,7 @@ __encodeFloat (I_ size, StgByteArray ba, I_ e) /* result = s * 2^e */
I_ i;
/* Convert MP_INT to a float; knows a lot about internal rep! */
for(r = 0.0, i = __abs(size); i >= 0; i--)
for(r = 0.0, i = __abs(size)-1; i >= 0; i--)
r = (r * GMP_BASE) + arr[i];
/* Now raise to the exponent */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment