]> granicus.if.org Git - php/commitdiff
Wrong condition
authorDmitry Stogov <dmitry@zend.com>
Mon, 18 May 2020 12:04:39 +0000 (15:04 +0300)
committerDmitry Stogov <dmitry@zend.com>
Mon, 18 May 2020 12:04:39 +0000 (15:04 +0300)
ext/opcache/jit/zend_jit_trace.c

index adf49d59b7c0bfb7d8af92f4e6242cc7c009feff..5ab3789c55c519c0cea9ae99a3ef1480c234a5fb 100644 (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;
        }