[PATCH] Fix ecvt to pass tests

Keith Packard keithp@keithp.com
Wed Dec 18 06:01:00 GMT 2019


Corinna Vinschen <vinschen@redhat.com> writes:

> That last hunk is not immediately clear to me.  Can you explain this a
> bit or even add some more text to the commit message?

Good catch. Not only was it 'unclear', it was wrong.

I've re-generated all of the test vectors for this code using glibc as a
model, then fixed the code to pass those tests *and* match my reading of
the POSIX manual for fcvt, ecvt and gcvt.

I then split the fixes into three patches:

 1) Fix fcvt. Fcvt is defined to only show a limited number of digits
    past the radix marker/decimal point. The unfixed code had a special
    case for numbers < 1.0 so that it would display the specified
    number of digits, even if there would need to be a number of leading
    zeros before those. The fixed code will limit itself to the
    specified number of digits past the decimal point, even if that
    means returning the empty string.

 2) Fix gcvt. Gcvt is always supposed to return the specified number of
    digits of precision. For numbers < 1.0, gcvt may insert leading
    zeros which are supposed to be part of this count.

It's interesting to note that both of these cases actually removed
conditionals around the calls to _dtoa_r as that function already did
exactly what was needed.

 3) Make sure _dcvt doesn't display a trailing decimal point

I'll send these three patches to the list shortly. Thanks much for your
review, and for asking a really good question. I got to spend quite a
few hours sorting this out.

-- 
-keith
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 832 bytes
Desc: not available
URL: <http://sourceware.org/pipermail/newlib/attachments/20191218/142e1055/attachment.sig>


More information about the Newlib mailing list