From d20c8496e9b387abdd5c519c146819fb942e6994 Mon Sep 17 00:00:00 2001 From: Dmitry Stogov Date: Wed, 22 Nov 2023 12:13:29 +0300 Subject: [PATCH] Update according to IR changes --- ext/opcache/jit/zend_jit_ir.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/opcache/jit/zend_jit_ir.c b/ext/opcache/jit/zend_jit_ir.c index 43d8df8b52d..97185c2f641 100644 --- a/ext/opcache/jit/zend_jit_ir.c +++ b/ext/opcache/jit/zend_jit_ir.c @@ -2661,7 +2661,7 @@ static void zend_jit_init_ctx(zend_jit_ctx *jit, uint32_t flags) #if defined (__CET__) && (__CET__ & 1) != 0 flags |= IR_GEN_ENDBR; #endif - flags |= IR_OPT_FOLDING | IR_OPT_CFG | IR_OPT_CODEGEN | IR_HAS_CALLS; + flags |= IR_OPT_FOLDING | IR_OPT_CFG | IR_OPT_CODEGEN; ir_init(&jit->ctx, flags, 256, 1024); jit->ctx.ret_type = -1;