summaryrefslogtreecommitdiff
path: root/Zend/zend_strtod.c
diff options
context:
space:
mode:
authorScott MacVicar <scottmac@php.net>2011-01-04 22:36:23 +0000
committerScott MacVicar <scottmac@php.net>2011-01-04 22:36:23 +0000
commitbb08994d71cd1b06a9a409e10ba7724f84fce0bb (patch)
tree3f76b52af2cbc058167876914be599e79547e85e /Zend/zend_strtod.c
parent8d8f6552caf46acea4ffeeb23c8b981b1c496c54 (diff)
downloadphp-git-bb08994d71cd1b06a9a409e10ba7724f84fce0bb.tar.gz
Fix bug #53632 with x87 fpu
Diffstat (limited to 'Zend/zend_strtod.c')
-rw-r--r--Zend/zend_strtod.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_strtod.c b/Zend/zend_strtod.c
index bac3e2466e..a6184ebf51 100644
--- a/Zend/zend_strtod.c
+++ b/Zend/zend_strtod.c
@@ -2035,7 +2035,7 @@ ZEND_API double zend_strtod (CONST char *s00, CONST char **se)
int bb2, bb5, bbe, bd2, bd5, bbbits, bs2, c, dsign,
e, e1, esign, i, j, k, nd, nd0, nf, nz, nz0, sign;
CONST char *s, *s0, *s1;
- double aadj, aadj1, adj;
+ volatile double aadj, aadj1, adj;
volatile _double rv, rv0;
Long L;
ULong y, z;