mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-25 22:40:05 +00:00
Fix cexpl when compiled with latest GCC
* sysdeps/ieee754/ldbl-128/e_expl.c (__ieee754_expl): Call math_force_eval.
This commit is contained in:
parent
2d9b85e7e7
commit
a4c9be1b8b
@ -1,3 +1,8 @@
|
||||
2017-07-21 Steve Ellcey <sellcey@cavium.com>
|
||||
|
||||
* sysdeps/ieee754/ldbl-128/e_expl.c (__ieee754_expl): Call
|
||||
math_force_eval.
|
||||
|
||||
2017-07-19 Adhemerval Zanella <adhemerval.zanella@linaro.org>
|
||||
|
||||
* sysdeps/sparc/fpu/libm-test-ulps: Update.
|
||||
|
@ -192,6 +192,7 @@ __ieee754_expl (_Float128 x)
|
||||
with maximum error in [-2^-16-2^-53,2^-16+2^-53]
|
||||
less than 4.8e-39. */
|
||||
x22 = x + x*x*(P1+x*(P2+x*(P3+x*(P4+x*(P5+x*P6)))));
|
||||
math_force_eval (x22);
|
||||
|
||||
/* Return result. */
|
||||
fesetenv (&oldenv);
|
||||
|
Loading…
Reference in New Issue
Block a user