]> granicus.if.org Git - php/commitdiff
- Move SET_UNUSED() to header
authorAndi Gutmans <andi@php.net>
Sat, 11 Nov 2000 17:59:47 +0000 (17:59 +0000)
committerAndi Gutmans <andi@php.net>
Sat, 11 Nov 2000 17:59:47 +0000 (17:59 +0000)
Zend/zend_compile.c
Zend/zend_compile.h

index 33616a0d5af312399238ae84bcc22b8e8c799f50..cf1b4956b944003bdf5de270112fc88f082e03c6 100644 (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));
index bc771935e6ace7d72b3b295fbed070ee47976723..b6f87f76281a6d73e8e9e2237e17e609a5cb44c4 100644 (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++)