From eae6df494d57cbef43ae348283d5c379fd528cdb Mon Sep 17 00:00:00 2001 From: Dmitry Stogov Date: Mon, 18 May 2020 15:04:39 +0300 Subject: [PATCH] Wrong condition --- ext/opcache/jit/zend_jit_trace.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/opcache/jit/zend_jit_trace.c b/ext/opcache/jit/zend_jit_trace.c index adf49d59b7c..5ab3789c55c 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; }