diff options
author | Dmitry Stogov <dmitry@php.net> | 2008-01-24 09:41:39 +0000 |
---|---|---|
committer | Dmitry Stogov <dmitry@php.net> | 2008-01-24 09:41:39 +0000 |
commit | 0b6825102d19c74974cc05468e19502c4caecdcd (patch) | |
tree | 00c3999ea6f91b28a47415ddf41543b8987baa09 /Zend/zend_compile.h | |
parent | 07000cc2ba14dee29a15ecbf8acee224d88122e3 (diff) | |
download | php-git-0b6825102d19c74974cc05468e19502c4caecdcd.tar.gz |
Changed EG(argument_stack) implementation.
Diffstat (limited to 'Zend/zend_compile.h')
-rw-r--r-- | Zend/zend_compile.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_compile.h b/Zend/zend_compile.h index 83f2efaaf8..91df3bfd33 100644 --- a/Zend/zend_compile.h +++ b/Zend/zend_compile.h @@ -271,6 +271,7 @@ typedef union _zend_function { typedef struct _zend_function_state { zend_function *function; + void **arguments; } zend_function_state; @@ -299,7 +300,6 @@ struct _zend_execute_data { union _temp_variable *Ts; zval ***CVs; zend_bool original_in_execution; - ALLOCA_FLAG(use_heap) HashTable *symbol_table; struct _zend_execute_data *prev_execute_data; zval *old_error_reporting; |