Skip to content

Commit

Permalink
- fix vc6 random behavior for Fix bug #53632 with x87 fpu
Browse files Browse the repository at this point in the history
  • Loading branch information
pierrejoye committed Jan 6, 2011
1 parent e14c8f3 commit 84ff832
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Zend/zend_strtod.c
Expand Up @@ -2030,6 +2030,10 @@ ZEND_API char * zend_dtoa(double _d, int mode, int ndigits, int *decpt, int *sig
return s0;
}

/* F* VC6 */
#if _MSC_VER <= 1300
# pragma optimize( "", off )
#endif
ZEND_API double zend_strtod (CONST char *s00, char **se)
{
int bb2, bb5, bbe, bd2, bd5, bbbits, bs2, c, dsign,
Expand Down

0 comments on commit 84ff832

Please sign in to comment.