diff options
author | Dmitry Stogov <dmitry@php.net> | 2008-04-24 15:45:46 +0000 |
---|---|---|
committer | Dmitry Stogov <dmitry@php.net> | 2008-04-24 15:45:46 +0000 |
commit | 8fac72574ddf11ff1ef40be400e089cf452a6f6f (patch) | |
tree | d7e6e5806a8022f3381245d7b47b7f557b653b66 /Zend/zend_execute.c | |
parent | f4e659d2af2ba68eb6d9092560eb0247a33fb827 (diff) | |
download | php-git-8fac72574ddf11ff1ef40be400e089cf452a6f6f.tar.gz |
Optimized handlers for ZEND_RECV and ZEND_RECV_INIT opocdes
Diffstat (limited to 'Zend/zend_execute.c')
-rw-r--r-- | Zend/zend_execute.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/Zend/zend_execute.c b/Zend/zend_execute.c index 40f6df7b57..d2aae1a45f 100644 --- a/Zend/zend_execute.c +++ b/Zend/zend_execute.c @@ -733,15 +733,6 @@ static inline zval* zend_assign_to_variable(zval **variable_ptr_ptr, zval *value } -static inline void zend_receive(zval **variable_ptr_ptr, zval *value TSRMLS_DC) -{ - zval *variable_ptr = *variable_ptr_ptr; - - Z_DELREF_P(variable_ptr); - *variable_ptr_ptr = value; - Z_ADDREF_P(value); -} - /* Utility Functions for Extensions */ static void zend_extension_statement_handler(zend_extension *extension, zend_op_array *op_array TSRMLS_DC) { |