Skip to content

Commit

Permalink
Don't use _DECONTED spesh fact
Browse files Browse the repository at this point in the history
It's going away in an upcoming MoarVM change.
  • Loading branch information
jnthn committed Sep 25, 2018
1 parent 464a86b commit f989b26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vm/moar/ops/perl6_ops.c
Expand Up @@ -77,7 +77,7 @@ static void p6init(MVMThreadContext *tc, MVMuint8 *cur_op) {
/* Boxing to Perl 6 types. */
static void discover_create(MVMThreadContext *tc, MVMSpeshGraph *g, MVMSpeshIns *ins, MVMObject *type) {
MVMSpeshFacts *tfacts = MVM_spesh_get_facts(tc, g, ins->operands[0]);
tfacts->flags |= MVM_SPESH_FACT_CONCRETE | MVM_SPESH_FACT_KNOWN_TYPE | MVM_SPESH_FACT_DECONTED;
tfacts->flags |= MVM_SPESH_FACT_CONCRETE | MVM_SPESH_FACT_KNOWN_TYPE;
tfacts->type = type;
}

Expand Down

0 comments on commit f989b26

Please sign in to comment.