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.
1 parent de5a582 commit b70e95dCopy full SHA for b70e95d
2 files changed
ext/opcache/tests/jit/gh14267_001.phpt
@@ -10,7 +10,7 @@ opcache
10
--FILE--
11
<?php
12
// Skip when JIT was completely disabled at runtime.
13
-if (($status = opcache_get_status()) === false || $status['jit']['enabled']) {
+if (($status = opcache_get_status()) === false || ($status['jit']['enabled'] ?? true)) {
14
ini_set('opcache.jit', 'tracing');
15
}
16
?>
ext/opcache/tests/jit/gh16393.phpt
@@ -8,7 +8,7 @@ opcache.jit_buffer_size=64M
8
9
class Test {
0 commit comments