summaryrefslogtreecommitdiffstats
path: root/Include/pymacconfig.h
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2009-10-24 13:28:38 (GMT)
committerMark Dickinson <dickinsm@gmail.com>2009-10-24 13:28:38 (GMT)
commit1d6e2e1833864238b903325b37d05fef9b794393 (patch)
tree9ec5c642e19d7aacf9be92a08d28b9434f99b4f6 /Include/pymacconfig.h
parent5e9f6676eaf911c9218549ea5f1e022f1ea95e32 (diff)
downloadcpython-1d6e2e1833864238b903325b37d05fef9b794393.zip
cpython-1d6e2e1833864238b903325b37d05fef9b794393.tar.gz
cpython-1d6e2e1833864238b903325b37d05fef9b794393.tar.bz2
Issue #7117 (backport py3k float repr) continued:
- add double endianness detection to configure script - add configure-time check to see whether we can use inline assembly to get and set x87 control word in configure script - add functions to get and set x87 control word in Python/pymath.c - add pyport.h logic to determine whether it's safe to use the short float repr or not
Diffstat (limited to 'Include/pymacconfig.h')
-rw-r--r--Include/pymacconfig.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/Include/pymacconfig.h b/Include/pymacconfig.h
index b2cc0b7..3a3428c 100644
--- a/Include/pymacconfig.h
+++ b/Include/pymacconfig.h
@@ -17,6 +17,9 @@
# undef SIZEOF_VOID_P
# undef SIZEOF__BOOL
# undef WORDS_BIGENDIAN
+# undef DOUBLE_IS_ARM_MIXED_ENDIAN_IEEE754
+# undef DOUBLE_IS_BIG_ENDIAN_IEEE754
+# undef DOUBLE_IS_LITTLE_ENDIAN_IEEE754
# undef VA_LIST_IS_ARRAY
# if defined(__LP64__) && defined(__x86_64__)
@@ -65,6 +68,9 @@
#ifdef __BIG_ENDIAN__
#define WORDS_BIGENDIAN 1
+#define DOUBLE_IS_BIG_ENDIAN_IEEE754
+#else
+#define DOUBLE_IS_LITTLE_ENDIAN_IEEE754
#endif /* __BIG_ENDIAN */
/*