diff options
| author | Andi Gutmans <andi@php.net> | 2001-08-07 03:17:33 +0000 |
|---|---|---|
| committer | Andi Gutmans <andi@php.net> | 2001-08-07 03:17:33 +0000 |
| commit | 5af7770a816fd74331afdee06e61acea184ac87d (patch) | |
| tree | 33f971900976da98abd9585e593f0edde3f8671b /Zend/zend_compile.c | |
| parent | 6737ea6fd45c12fcd1282f325202d652878afd26 (diff) | |
| download | php-git-5af7770a816fd74331afdee06e61acea184ac87d.tar.gz | |
- Sync Engine2 CVS with latest Engine CVS
Diffstat (limited to 'Zend/zend_compile.c')
| -rw-r--r-- | Zend/zend_compile.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Zend/zend_compile.c b/Zend/zend_compile.c index 5422bff2ad..b34e6ff93a 100644 --- a/Zend/zend_compile.c +++ b/Zend/zend_compile.c @@ -704,7 +704,6 @@ void zend_do_free(znode *op1 TSRMLS_DC) } } - void zend_do_begin_function_declaration(znode *function_token, znode *function_name, int is_method, int return_reference TSRMLS_DC) { zend_op_array op_array; @@ -2022,7 +2021,7 @@ void zend_do_indirect_references(znode *result, znode *num_references, znode *va } -void zend_do_unset(znode *variable TSRMLS_DC) +void zend_do_unset(znode *variable, int type TSRMLS_DC) { zend_op *last_op; @@ -2038,6 +2037,7 @@ void zend_do_unset(znode *variable TSRMLS_DC) break; } + last_op->extended_value = type; } |
