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.
This commit is contained in:
Adhemerval Zanella 2016-10-07 14:18:31 -03:00
parent 96b7fe4243
commit 12e5d361a4
2 changed files with 3 additions and 0 deletions

View File

@ -1,5 +1,7 @@
2016-10-07 Adhemerval Zanella <adhemerval.zanella@linaro.org>
* math/s_iseqsig_template.c: Include math-private.h.
* posix/Makefile (tests): Add tst-posix_fadvise and tst-posix_fadvise64.
* posix/tst-posix_fadvise.c: New file.
* posix/tst-posix_fadvise64.c: Likewise.

View File

@ -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>