Skip to content

Commit 2f73cbb

Browse files
committed
Update one more use of NO_AUTOLOAD
1 parent d91051d commit 2f73cbb

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

ext/opcache/jit/zend_jit_helpers.c

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1389,7 +1389,7 @@ static zend_always_inline bool zend_jit_verify_type_common(zval *arg, zend_arg_i
13891389
*cache_slot = ce;
13901390
} else {
13911391
ce = zend_fetch_class(ZEND_TYPE_NAME(*list_type),
1392-
(ZEND_FETCH_CLASS_AUTO | ZEND_FETCH_CLASS_NO_AUTOLOAD));
1392+
ZEND_FETCH_CLASS_AUTO | ZEND_FETCH_CLASS_NO_AUTOLOAD | ZEND_FETCH_CLASS_SILENT);
13931393
if (!ce) {
13941394
cache_slot++;
13951395
continue;
@@ -1411,7 +1411,8 @@ static zend_always_inline bool zend_jit_verify_type_common(zval *arg, zend_arg_i
14111411
ce = ZEND_TYPE_CE_CACHE(arg_info->type);
14121412
*cache_slot = ce;
14131413
} else {
1414-
ce = zend_fetch_class(ZEND_TYPE_NAME(arg_info->type), (ZEND_FETCH_CLASS_AUTO | ZEND_FETCH_CLASS_NO_AUTOLOAD));
1414+
ce = zend_fetch_class(ZEND_TYPE_NAME(arg_info->type),
1415+
ZEND_FETCH_CLASS_AUTO | ZEND_FETCH_CLASS_NO_AUTOLOAD | ZEND_FETCH_CLASS_SILENT);
14151416
if (UNEXPECTED(!ce)) {
14161417
goto builtin_types;
14171418
}

0 commit comments

Comments
 (0)