summaryrefslogtreecommitdiff
path: root/src/math/fma.c
diff options
context:
space:
mode:
authorJakob Kaivo <jkk@ung.org>2019-03-03 21:25:50 -0500
committerJakob Kaivo <jkk@ung.org>2019-03-03 21:25:50 -0500
commit06696f40afe58a231e2531c8bf6d9f0dadb92e51 (patch)
treeb146422c6326ffe3debf3163f0941d8dda0be105 /src/math/fma.c
parentf20eeea657d62f2ef905627ca3a9094d33af7d40 (diff)
outline details from C18 annex F
Diffstat (limited to 'src/math/fma.c')
-rw-r--r--src/math/fma.c24
1 files changed, 23 insertions, 1 deletions
diff --git a/src/math/fma.c b/src/math/fma.c
index 18b059d1..845afea4 100644
--- a/src/math/fma.c
+++ b/src/math/fma.c
@@ -1,10 +1,32 @@
# define TGSOURCE "fma.c"
#include "_tgmath.h"
#include <math.h>
+#include "fenv.h"
TYPE TGFN(fma)(TYPE x, TYPE y, TYPE z)
{
- return x - y - z;
+ int classx = fpclassify(x);
+ int classy = fpclassify(y);
+ /* int classz = fpclassify(z); */
+
+ if (classx == FP_INFINITE && classy == FP_ZERO) {
+ feraiseexcept(FE_INVALID);
+ return NAN;
+ }
+
+ if (classx == FP_ZERO && classy == FP_INFINITE) {
+ feraiseexcept(FE_INVALID);
+ return NAN;
+ }
+
+ /*
+ if (x * y == -z && fpclassify(x*y) == classz == FP_INFINITE) {
+ feraiseexcept(FE_INVALID);
+ return NAN;
+ }
+ */
+
+ return x * y + z;
}
/*