diff options
| author | Mark Dickinson <dickinsm@gmail.com> | 2009-05-04 13:59:04 (GMT) |
|---|---|---|
| committer | Mark Dickinson <dickinsm@gmail.com> | 2009-05-04 13:59:04 (GMT) |
| commit | e77c98ac840afdb3bccd4daf9e8a13d708ddd199 (patch) | |
| tree | 9e5043e868aa242846a435b11cfa664a9693d0a1 /Python | |
| parent | 8e04c7371849a2f204d6cb83ab961197706d904f (diff) | |
| download | cpython-e77c98ac840afdb3bccd4daf9e8a13d708ddd199.zip cpython-e77c98ac840afdb3bccd4daf9e8a13d708ddd199.tar.gz cpython-e77c98ac840afdb3bccd4daf9e8a13d708ddd199.tar.bz2 | |
Issue #5724: Fix test_cmath failures on Solaris 10.
Diffstat (limited to 'Python')
| -rw-r--r-- | Python/pymath.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Python/pymath.c b/Python/pymath.c index 6b8def9..2749688 100644 --- a/Python/pymath.c +++ b/Python/pymath.c @@ -1,5 +1,18 @@ #include "Python.h" +#ifdef X87_DOUBLE_ROUNDING +/* On x86 platforms using an x87 FPU, this function is called from the + Py_FORCE_DOUBLE macro (defined in pymath.h) to force a floating-point + number out of an 80-bit x87 FPU register and into a 64-bit memory location, + thus rounding from extended precision to double precision. */ +double _Py_force_double(double x) +{ + volatile double y; + y = x; + return y; +} +#endif + #ifndef HAVE_HYPOT double hypot(double x, double y) { |
