Skip to content

Instantly share code, notes, and snippets.

@tadzik
Created February 29, 2012 15:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tadzik/1941829 to your computer and use it in GitHub Desktop.
Save tadzik/1941829 to your computer and use it in GitHub Desktop.
This builds nqp/bs on blead parrot
diff --git a/src/6model/serialization.c b/src/6model/serialization.c
index 22b56cd..4661398 100644
--- a/src/6model/serialization.c
+++ b/src/6model/serialization.c
@@ -1432,7 +1432,7 @@ static void deserialize_context(PARROT_INTERP, SerializationReader *reader, INTV
/* Create a context; also grab the lexpad. */
Parrot_pcc_set_signature(interp, CURRENT_CONTEXT(interp), NULL);
- interp->current_cont = NEED_CONTINUATION;
+ Parrot_pcc_reuse_continuation(interp, CURRENT_CONTEXT(interp), NULL);
where = VTABLE_invoke(interp, static_code, NULL);
ctx = CURRENT_CONTEXT(interp);
lexpad = Parrot_pcc_get_lex_pad(interp, ctx);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment