diff options
author | Nikita Popov <nikita.ppv@gmail.com> | 2019-12-06 14:18:52 +0100 |
---|---|---|
committer | Nikita Popov <nikita.ppv@gmail.com> | 2019-12-06 14:18:52 +0100 |
commit | aed2bf7ab3b29435700e14dd820015ea2b52d6f3 (patch) | |
tree | 96b6ab3c1498ec36a7bf8491e714a9234c3bbf5a /Zend | |
parent | 0bac7854779595603e0431521c60744665641734 (diff) | |
download | php-git-aed2bf7ab3b29435700e14dd820015ea2b52d6f3.tar.gz |
Remove unused function
Diffstat (limited to 'Zend')
-rw-r--r-- | Zend/zend_execute.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/Zend/zend_execute.c b/Zend/zend_execute.c index 0cd4e105e9..870b7a2777 100644 --- a/Zend/zend_execute.c +++ b/Zend/zend_execute.c @@ -1302,15 +1302,6 @@ static int zend_verify_internal_return_type(zend_function *zf, zval *ret) } #endif -static zend_always_inline void zend_verify_return_type(zend_function *zf, zval *ret, void **cache_slot) -{ - zend_arg_info *ret_info = zf->common.arg_info - 1; - - if (UNEXPECTED(!zend_check_type(ret_info->type, ret, cache_slot, NULL, 1, 0))) { - zend_verify_return_error(zf, cache_slot, ret); - } -} - static ZEND_COLD int zend_verify_missing_return_type(const zend_function *zf, void **cache_slot) { /* VERIFY_RETURN_TYPE is not emitted for "void" functions, so this is always an error. */ |