summaryrefslogtreecommitdiff
path: root/Zend/zend_execute.h
diff options
context:
space:
mode:
authorDmitry Stogov <dmitry@zend.com>2020-10-08 02:04:38 +0300
committerDmitry Stogov <dmitry@zend.com>2020-10-08 02:04:38 +0300
commit5a447b086bba450d61c283adfecbdec657cc5f34 (patch)
treed81e854912792e9e60dd3a2ce305019ef6f4e6f3 /Zend/zend_execute.h
parent45441b3c11fdbc06a036d35a9ff1b1c625744f7f (diff)
downloadphp-git-5a447b086bba450d61c283adfecbdec657cc5f34.tar.gz
Change calling convention of zval_update_constant[_ex]() to fastcall.
Diffstat (limited to 'Zend/zend_execute.h')
-rw-r--r--Zend/zend_execute.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Zend/zend_execute.h b/Zend/zend_execute.h
index ab96d43c4c..62cee34452 100644
--- a/Zend/zend_execute.h
+++ b/Zend/zend_execute.h
@@ -155,8 +155,8 @@ static zend_always_inline zval* zend_assign_to_variable(zval *variable_ptr, zval
return variable_ptr;
}
-ZEND_API zend_result zval_update_constant(zval *pp);
-ZEND_API zend_result zval_update_constant_ex(zval *pp, zend_class_entry *scope);
+ZEND_API zend_result ZEND_FASTCALL zval_update_constant(zval *pp);
+ZEND_API zend_result ZEND_FASTCALL zval_update_constant_ex(zval *pp, zend_class_entry *scope);
/* dedicated Zend executor functions - do not use! */
struct _zend_vm_stack {