diff options
author | Dmitry Stogov <dmitry@zend.com> | 2017-10-10 10:11:05 +0300 |
---|---|---|
committer | Dmitry Stogov <dmitry@zend.com> | 2017-10-10 10:11:05 +0300 |
commit | ef5ea48741a1d227a10a6654c1a8cc2f02dd414f (patch) | |
tree | b00f4e9dd2ea42355c860a0ea57a0d9f4b926091 /Zend/zend_execute.h | |
parent | 08c0998b1ff1fa1a105eda1540a90ddb8ee4b16a (diff) | |
download | php-git-ef5ea48741a1d227a10a6654c1a8cc2f02dd414f.tar.gz |
Always use IS_CONSTANT_AST (IS_CONSTANT is removed).
Diffstat (limited to 'Zend/zend_execute.h')
-rw-r--r-- | Zend/zend_execute.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Zend/zend_execute.h b/Zend/zend_execute.h index ae809ab224..39fce43ccc 100644 --- a/Zend/zend_execute.h +++ b/Zend/zend_execute.h @@ -131,6 +131,7 @@ static zend_always_inline zval* zend_assign_to_variable(zval *variable_ptr, zval ZEND_API int zval_update_constant(zval *pp); ZEND_API int zval_update_constant_ex(zval *pp, zend_class_entry *scope); +ZEND_API int zend_use_undefined_constant(zend_string *name, zend_ast_attr attr, zval *result); /* dedicated Zend executor functions - do not use! */ struct _zend_vm_stack { |