diff options
author | Andi Gutmans <andi@php.net> | 2001-09-30 17:12:41 +0000 |
---|---|---|
committer | Andi Gutmans <andi@php.net> | 2001-09-30 17:12:41 +0000 |
commit | d8f62ea5a6ced3b29709c54cf3d4a6a90a0e9549 (patch) | |
tree | e59a6c252149a5e787678da5e2d9bbf87fe1faac /Zend/zend_compile.h | |
parent | 539c01606260dac916c2b9774a7a39771a096023 (diff) | |
download | php-git-experimental/namespaces.tar.gz |
- At last I've had some time to move all execute() locals into one struct.experimental/namespaces
- No immediate gain but it makes it more clear what variables are temps
- and which ones are execute() locals.
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 755d4ea739..e900990051 100644 --- a/Zend/zend_compile.h +++ b/Zend/zend_compile.h @@ -32,7 +32,7 @@ #define DEBUG_ZEND 0 #define FREE_PNODE(znode) zval_dtor(&znode->u.constant); -#define FREE_OP(op, should_free) if (should_free) zval_dtor(&Ts[(op)->u.var].tmp_var); +#define FREE_OP(Ts, op, should_free) if (should_free) zval_dtor(&Ts[(op)->u.var].tmp_var); #define SET_UNUSED(op) (op).op_type = IS_UNUSED |