Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix MSVC build.
  • Loading branch information
jnthn committed Jul 11, 2014
1 parent 900e17c commit 14eedae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vm/moar/ops/container.c
Expand Up @@ -164,8 +164,8 @@ static void rakudo_scalar_deserialize(MVMThreadContext *tc, MVMSTable *st, MVMSe
static void rakudo_scalar_spesh(MVMThreadContext *tc, MVMSTable *st, MVMSpeshGraph *g, MVMSpeshBB *bb, MVMSpeshIns *ins) {
switch (ins->info->opcode) {
case MVM_OP_decont: {
ins->info = MVM_op_get_op(MVM_OP_sp_p6oget_o);
MVMSpeshOperand *old_operands = ins->operands;
ins->info = MVM_op_get_op(MVM_OP_sp_p6oget_o);
ins->operands = MVM_spesh_alloc(tc, g, 3 * sizeof(MVMSpeshOperand));
ins->operands[0] = old_operands[0];
ins->operands[1] = old_operands[1];
Expand Down

0 comments on commit 14eedae

Please sign in to comment.