summaryrefslogtreecommitdiff
path: root/Zend/zend_compile.h
diff options
context:
space:
mode:
authorDmitry Stogov <dmitry@zend.com>2019-07-19 11:46:03 +0300
committerDmitry Stogov <dmitry@zend.com>2019-07-19 11:46:03 +0300
commit445d51347d1218770902fea2fc5392c7bdcb5dfe (patch)
tree30607bba235e14729cb480c88e24abb732e9c1ed /Zend/zend_compile.h
parentd574df63dc375f5fc9202ce5afde23f866b6450a (diff)
downloadphp-git-445d51347d1218770902fea2fc5392c7bdcb5dfe.tar.gz
Use run-time cache to avoid repeatable hash lookups in ZEND_DECLARE_CLASS_DELAYED
Diffstat (limited to 'Zend/zend_compile.h')
-rw-r--r--Zend/zend_compile.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_compile.h b/Zend/zend_compile.h
index 2d7c18fc58..a3dd2b2272 100644
--- a/Zend/zend_compile.h
+++ b/Zend/zend_compile.h
@@ -753,7 +753,7 @@ void zend_do_free(znode *op1);
ZEND_API int do_bind_function(zval *lcname);
ZEND_API int do_bind_class(zval *lcname, zend_string *lc_parent_name);
ZEND_API uint32_t zend_build_delayed_early_binding_list(const zend_op_array *op_array);
-ZEND_API void zend_do_delayed_early_binding(const zend_op_array *op_array, uint32_t first_early_binding_opline);
+ZEND_API void zend_do_delayed_early_binding(zend_op_array *op_array, uint32_t first_early_binding_opline);
void zend_do_extended_info(void);
void zend_do_extended_fcall_begin(void);