Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix compile error caused by MoarVM change
This tracks the changes to src/moar.c in MoarVM commit
824748db35636f2bd989f201705569f57f6cfc60
  • Loading branch information
niner committed Aug 5, 2016
1 parent 8b96094 commit 7d667b8
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions Perl6.xs
Expand Up @@ -88,8 +88,7 @@ initialize()

MVMStaticFrame *start_frame;

start_frame = cu->body.main_frame ? cu->body.main_frame : cu->body.frames[0];
MVM_interp_run(tc, &toplevel_initial_invoke, start_frame);
MVM_interp_run(tc, &toplevel_initial_invoke, cu->body.main_frame);

/* Points to the current opcode. */
MVMuint8 *cur_op = NULL;
Expand Down

0 comments on commit 7d667b8

Please sign in to comment.