Skip to content

Commit

Permalink
Fix YJIT args for rb_vm_set_ivar_idx
Browse files Browse the repository at this point in the history
This was broken accidentally with the revert of shapes (it conflicted
with some unrelated cleanup).
  • Loading branch information
jhawthorn committed Oct 1, 2022
1 parent 1143fe3 commit 70538be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion yjit/src/codegen.rs
Expand Up @@ -1945,7 +1945,7 @@ fn gen_set_ivar(
rb_vm_set_ivar_idx as *const u8,
vec![
recv_opnd,
Opnd::UImm(ivar_name),
ivar_index.into(),
val_opnd,
],
);
Expand Down

0 comments on commit 70538be

Please sign in to comment.