1
0
mirror of https://github.com/php/php-src.git synced 2026-04-21 06:51:18 +02:00

- Move SET_UNUSED() to header

This commit is contained in:
Andi Gutmans
2000-11-11 17:59:47 +00:00
parent 86a13dd94e
commit 1ccf94066c
2 changed files with 1 additions and 3 deletions

View File

@@ -34,9 +34,6 @@ ZEND_API zend_compiler_globals compiler_globals;
ZEND_API zend_executor_globals executor_globals;
#endif
#define SET_UNUSED(op) (op).op_type = IS_UNUSED
static void free_filename(void *p)
{
efree(*((char **) p));

View File

@@ -44,6 +44,7 @@
#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 SET_UNUSED(op) (op).op_type = IS_UNUSED
#if SUPPORT_INTERACTIVE
#define INC_BPC(op_array) ((op_array)->backpatch_count++)