mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
Added missing debug arguments
This commit is contained in:
parent
8582e53430
commit
925f05dd1a
1 changed files with 2 additions and 2 deletions
|
@ -44,7 +44,7 @@ static void ZEND_FASTCALL zend_ast_ref_destroy_wrapper(zend_ast_ref *ast ZEND_FI
|
||||||
# define zend_ast_ref_destroy_wrapper zend_ast_ref_destroy
|
# define zend_ast_ref_destroy_wrapper zend_ast_ref_destroy
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
typedef void (ZEND_FASTCALL *zend_zval_dtor_func_t)(zend_refcounted *p);
|
typedef void (ZEND_FASTCALL *zend_zval_dtor_func_t)(zend_refcounted *p ZEND_FILE_LINE_DC);
|
||||||
|
|
||||||
static const zend_zval_dtor_func_t zend_zval_dtor_func[] = {
|
static const zend_zval_dtor_func_t zend_zval_dtor_func[] = {
|
||||||
/* IS_UNDEF */ (zend_zval_dtor_func_t)zend_empty_destroy,
|
/* IS_UNDEF */ (zend_zval_dtor_func_t)zend_empty_destroy,
|
||||||
|
@ -64,7 +64,7 @@ static const zend_zval_dtor_func_t zend_zval_dtor_func[] = {
|
||||||
ZEND_API void ZEND_FASTCALL _zval_dtor_func(zend_refcounted *p ZEND_FILE_LINE_DC)
|
ZEND_API void ZEND_FASTCALL _zval_dtor_func(zend_refcounted *p ZEND_FILE_LINE_DC)
|
||||||
{
|
{
|
||||||
ZEND_ASSERT(GC_TYPE(p) <= IS_CONSTANT_AST);
|
ZEND_ASSERT(GC_TYPE(p) <= IS_CONSTANT_AST);
|
||||||
zend_zval_dtor_func[GC_TYPE(p)](p);
|
zend_zval_dtor_func[GC_TYPE(p)](p ZEND_FILE_LINE_RELAY_CC);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void ZEND_FASTCALL zend_string_destroy(zend_string *str ZEND_FILE_LINE_DC)
|
static void ZEND_FASTCALL zend_string_destroy(zend_string *str ZEND_FILE_LINE_DC)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue