1
0
mirror of https://github.com/php/php-src.git synced 2026-04-03 06:02:23 +02:00

Wrong condition

This commit is contained in:
Dmitry Stogov
2020-05-18 15:04:39 +03:00
parent 7a07deca0f
commit eae6df494d

View File

@@ -1018,7 +1018,7 @@ static zend_ssa *zend_jit_trace_build_tssa(zend_jit_trace_rec *trace_buffer, uin
tssa->cfg.blocks[0].predecessors_count = 0;
}
if (JIT_G(opt_level) <= ZEND_JIT_LEVEL_INLINE) {
if (JIT_G(opt_level) < ZEND_JIT_LEVEL_INLINE) {
return tssa;
}