summaryrefslogtreecommitdiff
path: root/src/math/fma.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/math/fma.c')
-rw-r--r--src/math/fma.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/math/fma.c b/src/math/fma.c
index d36aa408..766dd176 100644
--- a/src/math/fma.c
+++ b/src/math/fma.c
@@ -7,6 +7,7 @@
TYPE TGFN(fma)(TYPE x, TYPE y, TYPE z)
{
+ SIGNAL_SAFE(0);
int classx = fpclassify(x);
int classy = fpclassify(y);
/* int classz = fpclassify(z); */