summaryrefslogtreecommitdiff
path: root/Zend/zend_execute_API.c
diff options
context:
space:
mode:
authorNikita Popov <nikic@php.net>2014-08-29 21:47:10 +0200
committerNikita Popov <nikic@php.net>2014-08-29 21:53:09 +0200
commitb73bea9cc86468f82b6619d05e2f105d2712809e (patch)
treed2baa157421db11136e311e829dfd5296229026e /Zend/zend_execute_API.c
parent545fd5168ed0eaaf23e12f11c48e8dc358de3ee3 (diff)
downloadphp-git-b73bea9cc86468f82b6619d05e2f105d2712809e.tar.gz
Combine foreach copy / switch cond stacks
Now one common stack to handle both, which stores znodes instead of full oplines (foreach copy stack) or switch entries (switch cond stack). Also removed EG(start_op) while at it.
Diffstat (limited to 'Zend/zend_execute_API.c')
-rw-r--r--Zend/zend_execute_API.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/Zend/zend_execute_API.c b/Zend/zend_execute_API.c
index 37352c9106..5984e2dc82 100644
--- a/Zend/zend_execute_API.c
+++ b/Zend/zend_execute_API.c
@@ -190,7 +190,6 @@ void init_executor(TSRMLS_D) /* {{{ */
ZVAL_OBJ(&EG(This), NULL);
EG(active) = 1;
- EG(start_op) = NULL;
}
/* }}} */