diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2018-10-17 11:24:23 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-17 11:24:23 -0500 |
commit | 20cd7a59b4621fd21319064839a33a85a683c88b (patch) | |
tree | 862edc5bfd116aeff4decaca2a934a0dd05a1367 /numpy/core/include | |
parent | 5e6ff3f4992c99e145d8c569cc409058ef53c937 (diff) | |
parent | a3e752b497e3afcae0a4e1fcdfa502fa5ad3534d (diff) | |
download | numpy-20cd7a59b4621fd21319064839a33a85a683c88b.tar.gz |
Merge pull request #12124 from mattip/rework-float-error-status
BUG: refactor float error status to support Alpine linux
Diffstat (limited to 'numpy/core/include')
-rw-r--r-- | numpy/core/include/numpy/ufuncobject.h | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/numpy/core/include/numpy/ufuncobject.h b/numpy/core/include/numpy/ufuncobject.h index 4b1b3d325..9d48ab608 100644 --- a/numpy/core/include/numpy/ufuncobject.h +++ b/numpy/core/include/numpy/ufuncobject.h @@ -314,22 +314,6 @@ typedef struct _loop1d_info { &(arg)->first))) \ goto fail;} while (0) - -/* keep in sync with ieee754.c.src */ -#if defined(sun) || defined(__BSD__) || defined(__OpenBSD__) || \ - (defined(__FreeBSD__) && (__FreeBSD_version < 502114)) || \ - defined(__NetBSD__) || \ - defined(__GLIBC__) || defined(__APPLE__) || \ - defined(__CYGWIN__) || defined(__MINGW32__) || \ - (defined(__FreeBSD__) && (__FreeBSD_version >= 502114)) || \ - defined(_AIX) || \ - defined(_MSC_VER) || \ - defined(__osf__) && defined(__alpha) -#else -#define NO_FLOATING_POINT_SUPPORT -#endif - - /* * THESE MACROS ARE DEPRECATED. * Use npy_set_floatstatus_* in the npymath library. |