Use new calling convention

This commit is contained in:
Justin Ethier 2021-02-21 21:40:39 -05:00
parent fd35f2e53e
commit e9ebfb8dcb

3
gc.c
View file

@ -2918,7 +2918,8 @@ void gc_mutator_thread_runnable(gc_thread_data * thd, object result, object mayb
thd->gc_args[0] = result;
Cyc_apply_from_buf(thd, 1, thd->gc_cont, thd->gc_args);
} else {
(((closure) (thd->gc_cont))->fn) (thd, 1, thd->gc_cont, result);
object buf[1] = {result};
(((closure) (thd->gc_cont))->fn) (thd, thd->gc_cont, 1, buf);
}
}
}