summaryrefslogtreecommitdiff
path: root/Zend/zend.c
diff options
context:
space:
mode:
authorDmitry Stogov <dmitry@php.net>2009-03-18 10:18:10 +0000
committerDmitry Stogov <dmitry@php.net>2009-03-18 10:18:10 +0000
commit31c0af245e7601f3c3c870c20a57e9cf8634bb7b (patch)
tree38d551086ead5a5d7c84f70154028b712de5550e /Zend/zend.c
parentd3b42700a0279bfcd58414799b81cd332d1fa08f (diff)
downloadphp-git-31c0af245e7601f3c3c870c20a57e9cf8634bb7b.tar.gz
Fixed floating point mathematic speed degradation (Christian)
Diffstat (limited to 'Zend/zend.c')
-rw-r--r--Zend/zend.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/Zend/zend.c b/Zend/zend.c
index af2ffaba43..44f2c4a9cb 100644
--- a/Zend/zend.c
+++ b/Zend/zend.c
@@ -549,6 +549,7 @@ static void executor_globals_ctor(zend_executor_globals *executor_globals TSRMLS
EG(current_execute_data) = NULL;
EG(current_module) = NULL;
EG(exit_status) = 0;
+ EG(saved_fpu_cw) = NULL;
EG(active) = 0;
}
/* }}} */