File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -4175,6 +4175,7 @@ ZEND_EXT_API int zend_jit_check_support(void)
4175
4175
zend_jit_vm_kind != ZEND_VM_KIND_HYBRID ) {
4176
4176
zend_error (E_WARNING , "JIT is compatible only with CALL and HYBRID VM. JIT disabled." );
4177
4177
JIT_G (enabled ) = 0 ;
4178
+ JIT_G (on ) = 0 ;
4178
4179
return FAILURE ;
4179
4180
}
4180
4181
@@ -4183,13 +4184,15 @@ ZEND_EXT_API int zend_jit_check_support(void)
4183
4184
zend_error (E_WARNING , "JIT is incompatible with third party extensions that override zend_execute_ex(). JIT disabled." );
4184
4185
}
4185
4186
JIT_G (enabled ) = 0 ;
4187
+ JIT_G (on ) = 0 ;
4186
4188
return FAILURE ;
4187
4189
}
4188
4190
4189
4191
for (i = 0 ; i <= 256 ; i ++ ) {
4190
4192
if (zend_get_user_opcode_handler (i ) != NULL ) {
4191
4193
zend_error (E_WARNING , "JIT is incompatible with third party extensions that setup user opcode handlers. JIT disabled." );
4192
4194
JIT_G (enabled ) = 0 ;
4195
+ JIT_G (on ) = 0 ;
4193
4196
return FAILURE ;
4194
4197
}
4195
4198
}
You can’t perform that action at this time.
0 commit comments