From 3e13b7d4ef546574dcf376e2bb6b630abb46181b Mon Sep 17 00:00:00 2001 From: Max Bernstein Date: Fri, 16 Jan 2026 23:07:00 -0500 Subject: [PATCH] ZJIT: Fix land race InvokeProc and HIR effects landed without an intermediate rebase so we got a conflict in the form of a type checker error (not handled new opcode in a new function). --- zjit/src/hir.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/zjit/src/hir.rs b/zjit/src/hir.rs index e187dd6e64..6c2bd09ad3 100644 --- a/zjit/src/hir.rs +++ b/zjit/src/hir.rs @@ -1205,6 +1205,7 @@ impl Insn { Insn::IncrCounter(_) => effects::Any, Insn::IncrCounterPtr { .. } => effects::Any, Insn::CheckInterrupts { .. } => effects::Any, + Insn::InvokeProc { .. } => effects::Any, } }