From 1ce865244a0656e0c31be822c1ccfa7ab2155aaa Mon Sep 17 00:00:00 2001 From: Dmitry Stogov Date: Tue, 17 Sep 2024 16:15:38 +0300 Subject: [PATCH] Update IR IR commit: d441328849f5172e6ad213cf0e42d77322238048 --- ext/opcache/jit/ir/ir_ra.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/opcache/jit/ir/ir_ra.c b/ext/opcache/jit/ir/ir_ra.c index 5c1eee0f34b..dcc67e0074f 100644 --- a/ext/opcache/jit/ir/ir_ra.c +++ b/ext/opcache/jit/ir/ir_ra.c @@ -2007,7 +2007,7 @@ int ir_coalesce(ir_ctx *ctx) if (ctx->binding) { ir_ref b1 = ir_binding_find(ctx, i); ir_ref b2 = ir_binding_find(ctx, insn->op1); - if (b1 != b2) { + if (b1 && b1 != b2) { continue; } }