Commit 25a00742 by Richard Kenner

(asctoeg): `0.0eX' is zero, regardless of the exponent X.

From-SVN: r12373
parent 241cea85
......@@ -4988,7 +4988,15 @@ asctoeg (ss, y, oprec)
/* Exponent interpretation */
expnt:
/* 0.0eXXX is zero, regardless of XXX. Check for the 0.0. */
for (k = 0; k < NI; k++)
{
if (yy[k] != 0)
goto read_expnt;
}
goto aexit;
read_expnt:
esign = 1;
exp = 0;
++s;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment