From: Dmitry Stogov Date: Mon, 18 May 2020 12:04:39 +0000 (+0300) Subject: Wrong condition X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=eae6df494d57cbef43ae348283d5c379fd528cdb;p=php Wrong condition --- diff --git a/ext/opcache/jit/zend_jit_trace.c b/ext/opcache/jit/zend_jit_trace.c index adf49d59b7..5ab3789c55 100644 --- a/ext/opcache/jit/zend_jit_trace.c +++ b/ext/opcache/jit/zend_jit_trace.c @@ -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; }