]> git.ipfire.org Git - thirdparty/gcc.git/commit
Update libquadmath fmaq from glibc, fix nanq issues.
authorjsm28 <jsm28@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 7 Nov 2018 13:49:03 +0000 (13:49 +0000)
committerjsm28 <jsm28@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 7 Nov 2018 13:49:03 +0000 (13:49 +0000)
commit529ebc2a706c4223dc8068a32a195b6c400d1f2d
treedee0c3942cebd1d3f3ba6c46f830c4e47585ef3d
parent7ed0697e8f2758cee176f45b303a94aea2bf2fb4
Update libquadmath fmaq from glibc, fix nanq issues.

This patch extends update-quadmath.py to update fmaq from glibc.

The issue in that function was that quadmath-imp.h had a struct in a
union with mant_high and mant_low fields (up to 64-bit) whereas glibc
has mantissa0, mantissa1, mantissa2 and mantissa3 (up to 32-bit).  The
patch changes those fields to be the same as in glibc, moving printf /
strtod code that also uses those fields back to closer to the glibc
form.  This allows fmaq to be updated automatically from glibc (which
brings in at least one bug fix from glibc from 2015).

nanq was also using the mant_high field name, and had other issues: it
only partly initialized the union from which a value was returned, and
setting mant_high to 1 meant a signaling NaN would be returned rather
than a quiet NaN.  This patch fixes those issues as part of updating
it to use the changed interfaces (but does not fix the issue of not
using the argument).

Bootstrapped with no regressions on x86_64-pc-linux-gnu.

* quadmath-imp.h (ieee854_float128): Use mantissa0, mantissa1,
mantissa2 and mantissa3 fields instead of mant_high and mant_low.
Change nan field to ieee_nan.
* update-quadmath.py (update_sources): Also update fmaq.c.
* math/nanq.c (nanq): Use ieee_nan field of union.
Zero-initialize f.  Set quiet_nan field.
* printf/flt1282mpn.c, printf/printf_fphex.c, strtod/mpn2flt128.c,
strtod/strtoflt128.c: Use mantissa0, mantissa1, mantissa2 and
mantissa3 fields.  Use ieee_nan and quiet_nan field.
* math/fmaq.c: Regenerate from glibc sources with
update-quadmath.py.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@265874 138bc75d-0d04-0410-961f-82ee72b054a4
libquadmath/ChangeLog
libquadmath/math/fmaq.c
libquadmath/math/nanq.c
libquadmath/printf/flt1282mpn.c
libquadmath/printf/printf_fphex.c
libquadmath/quadmath-imp.h
libquadmath/strtod/mpn2flt128.c
libquadmath/strtod/strtoflt128.c
libquadmath/update-quadmath.py