We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb5f10e commit 03a9d07Copy full SHA for 03a9d07
zjit/src/hir.rs
@@ -4769,7 +4769,6 @@ pub fn iseq_to_hir(iseq: *const rb_iseq_t) -> Result<Function, ParseError> {
4769
// In this case, we side exit to the interpreter.
4770
// TODO(Jacob): Replace the magic number 32 with a named constant. (Can be completed after PR 15039)
4771
if unsafe {(*rb_get_iseq_body_param_keyword(iseq)).num >= 32} {
4772
- let exit_id = fun.push_insn(block, Insn::Snapshot {state: exit_state});
4773
fun.push_insn(block, Insn::SideExit { state: exit_id, reason: SideExitReason::TooManyKeywordParameters });
4774
break;
4775
}
0 commit comments