summaryrefslogtreecommitdiff
path: root/Zend/zend_compile.h
diff options
context:
space:
mode:
authorDmitry Stogov <dmitry@php.net>2008-01-24 09:41:39 +0000
committerDmitry Stogov <dmitry@php.net>2008-01-24 09:41:39 +0000
commit0b6825102d19c74974cc05468e19502c4caecdcd (patch)
tree00c3999ea6f91b28a47415ddf41543b8987baa09 /Zend/zend_compile.h
parent07000cc2ba14dee29a15ecbf8acee224d88122e3 (diff)
downloadphp-git-0b6825102d19c74974cc05468e19502c4caecdcd.tar.gz
Changed EG(argument_stack) implementation.
Diffstat (limited to 'Zend/zend_compile.h')
-rw-r--r--Zend/zend_compile.h2
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;