summaryrefslogtreecommitdiff
path: root/src/math/fma.c
diff options
context:
space:
mode:
authorSzabolcs Nagy <nsz@port70.net>2012-11-13 13:34:45 +0100
committerSzabolcs Nagy <nsz@port70.net>2012-11-13 13:34:45 +0100
commit033a9d6ad2a65ac03156b179e7c6101d2e72c4c0 (patch)
tree8766fcbb535225041d0d4afe330a8ae686c1ef4d /src/math/fma.c
parentc4359e01303da2755fe7e8033826b132eb3659b1 (diff)
downloadmusl-033a9d6ad2a65ac03156b179e7c6101d2e72c4c0.tar.gz
math: use '#pragma STDC FENV_ACCESS ON' when fenv is accessed
Diffstat (limited to 'src/math/fma.c')
-rw-r--r--src/math/fma.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/math/fma.c b/src/math/fma.c
index 7076d4b9..17f1cdcc 100644
--- a/src/math/fma.c
+++ b/src/math/fma.c
@@ -89,6 +89,7 @@ static int getexp(long double x)
double fma(double x, double y, double z)
{
+ #pragma STDC FENV_ACCESS ON
long double hi, lo1, lo2, xy;
int round, ez, exy;
@@ -306,6 +307,7 @@ static inline struct dd dd_mul(double a, double b)
*/
double fma(double x, double y, double z)
{
+ #pragma STDC FENV_ACCESS ON
double xs, ys, zs, adj;
struct dd xy, r;
int oround;