We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 58b34fb + d3992b6 commit 23391f1Copy full SHA for 23391f1
ext/opcache/jit/zend_jit.c
@@ -3448,7 +3448,9 @@ ZEND_EXT_API int zend_jit_check_support(void)
3448
}
3449
3450
if (zend_execute_ex != execute_ex) {
3451
- if (strcmp(sapi_module.name, "phpdbg") != 0) {
+ if (zend_dtrace_enabled) {
3452
+ zend_error(E_WARNING, "JIT is incompatible with DTrace. JIT disabled.");
3453
+ } else if (strcmp(sapi_module.name, "phpdbg") != 0) {
3454
zend_error(E_WARNING, "JIT is incompatible with third party extensions that override zend_execute_ex(). JIT disabled.");
3455
3456
JIT_G(enabled) = 0;
0 commit comments