summary refs log tree commit diff
path: root/math
diff options
context:
space:
mode:
authorAdhemerval Zanella <adhemerval.zanella@linaro.org>2016-10-07 14:18:31 -0300
committerAdhemerval Zanella <adhemerval.zanella@linaro.org>2016-10-07 14:18:31 -0300
commit12e5d361a4dcfe3579f1dd263f911ac193b0fa29 (patch)
treeda7968d34b44f214e0bf6227d48acd5b38b7ed46 /math
parent96b7fe424371f19dd360eb2ab356ff85d2775344 (diff)
downloadglibc-12e5d361a4dcfe3579f1dd263f911ac193b0fa29.tar.gz
glibc-12e5d361a4dcfe3579f1dd263f911ac193b0fa29.tar.xz
glibc-12e5d361a4dcfe3579f1dd263f911ac193b0fa29.zip
Fix iseqsig for ports that do not support FE_INVALID
Microblaze, nios2, and tile do not support FE_INVALID and thus
define feraiseexcept as a empty macro.  Include math-private.h
to get such definition.

Checked with a build for microblaze, nios2, and tilepro.

	* math/s_iseqsig_template.c: Include math-private.h.
Diffstat (limited to 'math')
-rw-r--r--math/s_iseqsig_template.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/math/s_iseqsig_template.c b/math/s_iseqsig_template.c
index ebdae6493c..5969206708 100644
--- a/math/s_iseqsig_template.c
+++ b/math/s_iseqsig_template.c
@@ -19,6 +19,7 @@
 #include <errno.h>
 #include <fenv.h>
 #include <math.h>
+#include <math_private.h>
 #include <stdbool.h>
 #include <fix-fp-int-compare-invalid.h>