Skip to content

Commit eae6df4

Browse files
committed
Wrong condition
1 parent 7a07dec commit eae6df4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/opcache/jit/zend_jit_trace.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1018,7 +1018,7 @@ static zend_ssa *zend_jit_trace_build_tssa(zend_jit_trace_rec *trace_buffer, uin
10181018
tssa->cfg.blocks[0].predecessors_count = 0;
10191019
}
10201020

1021-
if (JIT_G(opt_level) <= ZEND_JIT_LEVEL_INLINE) {
1021+
if (JIT_G(opt_level) < ZEND_JIT_LEVEL_INLINE) {
10221022
return tssa;
10231023
}
10241024

0 commit comments

Comments
 (0)