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).
This commit is contained in:
Max Bernstein 2026-01-16 23:07:00 -05:00
parent 0e0fad1e58
commit 3e13b7d4ef

View File

@ -1205,6 +1205,7 @@ impl Insn {
Insn::IncrCounter(_) => effects::Any,
Insn::IncrCounterPtr { .. } => effects::Any,
Insn::CheckInterrupts { .. } => effects::Any,
Insn::InvokeProc { .. } => effects::Any,
}
}