Skip to content

Commit f5f05e8

Browse files
authored
Fix regression on systems built without JIT (php#16024)
regressing commit: 654b787 This was called if JIT was enabled or not. If not enabled, it'll result in an undeclared function warning and maybe a bad time in the linker. Gate the meat of this PHP-side function on if JIT is enabled (but keep it existing so PHP userland code works with or without JIT, OFC).
1 parent 3293faf commit f5f05e8

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

ext/opcache/zend_accelerator_module.c

+2
Original file line numberDiff line numberDiff line change
@@ -934,10 +934,12 @@ ZEND_FUNCTION(opcache_jit_blacklist)
934934
RETURN_THROWS();
935935
}
936936

937+
#ifdef HAVE_JIT
937938
const zend_function *func = zend_get_closure_method_def(Z_OBJ_P(closure));
938939
if (ZEND_USER_CODE(func->type)) {
939940
zend_jit_blacklist_function((zend_op_array *)&func->op_array);
940941
}
942+
#endif
941943
}
942944

943945
ZEND_FUNCTION(opcache_compile_file)

0 commit comments

Comments
 (0)