File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -16,6 +16,10 @@ PHP NEWS
16
16
- LibXML:
17
17
. Fixed bug GH-14563 (Build failure with libxml2 v2.13.0). (nielsdos)
18
18
19
+ - Opcache:
20
+ . Fixed bug GH-14550 (No warning message when Zend DTrace is enabled that
21
+ opcache.jit is implictly disabled). (nielsdos)
22
+
19
23
- Output:
20
24
. Fixed bug GH-14808 (Unexpected null pointer in Zend/zend_string.h with
21
25
empty output buffer). (nielsdos)
Original file line number Diff line number Diff line change @@ -4877,7 +4877,9 @@ ZEND_EXT_API int zend_jit_check_support(void)
4877
4877
}
4878
4878
4879
4879
if (zend_execute_ex != execute_ex ) {
4880
- if (strcmp (sapi_module .name , "phpdbg" ) != 0 ) {
4880
+ if (zend_dtrace_enabled ) {
4881
+ zend_error (E_WARNING , "JIT is incompatible with DTrace. JIT disabled." );
4882
+ } else if (strcmp (sapi_module .name , "phpdbg" ) != 0 ) {
4881
4883
zend_error (E_WARNING , "JIT is incompatible with third party extensions that override zend_execute_ex(). JIT disabled." );
4882
4884
}
4883
4885
JIT_G (enabled ) = 0 ;
You can’t perform that action at this time.
0 commit comments