Skip to content

Commit 00e050e

Browse files
committed
Remove ZEND_FP_EXCEPT macro and HAVE_FP_EXCEPT
Usage of the HAVE_FP_EXCEPT symbol has been removed via c334058 and isn't used in current code anymore.
1 parent 5cf570c commit 00e050e

File tree

2 files changed

+0
-18
lines changed

2 files changed

+0
-18
lines changed

Zend/Zend.m4

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,8 +83,6 @@ AC_CHECK_FUNCS(memcpy strdup getpid kill strtod strtol finite fpclass sigsetjmp)
8383
8484
AC_CHECK_DECLS([isfinite, isnan, isinf], [], [], [[#include <math.h>]])
8585
86-
ZEND_FP_EXCEPT
87-
8886
ZEND_CHECK_FLOAT_PRECISION
8987
9088
dnl test whether double cast to long preserves least significant bits

Zend/acinclude.m4

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -42,22 +42,6 @@ AC_DEFUN([LIBZEND_BISON_CHECK],[
4242
esac
4343
])
4444

45-
AC_DEFUN([ZEND_FP_EXCEPT],[
46-
AC_CACHE_CHECK(whether fp_except is defined, ac_cv_type_fp_except,[
47-
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
48-
#include <floatingpoint.h>
49-
]],[[
50-
fp_except x = (fp_except) 0;
51-
]])],[
52-
ac_cv_type_fp_except=yes
53-
],[
54-
ac_cv_type_fp_except=no
55-
])])
56-
if test "$ac_cv_type_fp_except" = "yes"; then
57-
AC_DEFINE(HAVE_FP_EXCEPT, 1, [whether floatingpoint.h defines fp_except])
58-
fi
59-
])
60-
6145
dnl x87 floating point internal precision control checks
6246
dnl See: http://wiki.php.net/rfc/rounding
6347
AC_DEFUN([ZEND_CHECK_FLOAT_PRECISION],[

0 commit comments

Comments
 (0)