Skip to content

Commit

Permalink
fix copy-pasto in sp_bind_n
Browse files Browse the repository at this point in the history
  • Loading branch information
timo committed Jun 9, 2015
1 parent 47667f8 commit 4f5d0bb
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/core/interp.c
Expand Up @@ -4788,8 +4788,7 @@ void MVM_interp_run(MVMThreadContext *tc, void (*initial_invoke)(MVMThreadContex
}
OP(sp_bind_n): {
MVMObject *o = GET_REG(cur_op, 0).o;
MVMnum64 value = GET_REG(cur_op, 4).n64;
*((MVMint64 *)((char *)o + GET_UI16(cur_op, 2))) = GET_REG(cur_op, 4).n64;
*((MVMnum64 *)((char *)o + GET_UI16(cur_op, 2))) = GET_REG(cur_op, 4).n64;
cur_op += 6;
goto NEXT;
}
Expand Down

0 comments on commit 4f5d0bb

Please sign in to comment.