zend_do_fcall_overloaded() doesn't have to be exported

This commit is contained in:
Dmitry Stogov 2019-05-29 10:32:30 +03:00
parent 7ca0ac8dc7
commit 0d102515bf
2 changed files with 1 additions and 3 deletions

View file

@ -4062,7 +4062,7 @@ already_compiled:
}
/* }}} */
ZEND_API int ZEND_FASTCALL zend_do_fcall_overloaded(zend_execute_data *call, zval *ret) /* {{{ */
static ZEND_COLD int ZEND_FASTCALL zend_do_fcall_overloaded(zend_execute_data *call, zval *ret) /* {{{ */
{
zend_function *fbc = call->func;
zend_object *object;

View file

@ -362,8 +362,6 @@ ZEND_API void zend_clean_and_cache_symbol_table(zend_array *symbol_table);
ZEND_API void zend_free_compiled_variables(zend_execute_data *execute_data);
ZEND_API void zend_cleanup_unfinished_execution(zend_execute_data *execute_data, uint32_t op_num, uint32_t catch_op_num);
ZEND_API int ZEND_FASTCALL zend_do_fcall_overloaded(zend_execute_data *call, zval *ret);
#define CACHE_ADDR(num) \
((void**)((char*)EX(run_time_cache) + (num)))