diff options
Diffstat (limited to 'src/ejit.c')
-rw-r--r-- | src/ejit.c | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -1263,7 +1263,7 @@ int64_t ejit_run_interp(struct ejit_func *f, size_t argc, void ***labels_wb) { if (run) { - assert(f->gpr && "trying to run a function that hasn't been compiled"); + assert(f->size && "trying to run a function that hasn't been compiled"); assert(f->rtype == EJIT_VOID || ejit_int_type(f->rtype)); if (f->arena) return ((ejit_escape_t)f->arena)(argc, args); @@ -1281,8 +1281,9 @@ double ejit_run_interp_f(struct ejit_func *f, size_t argc, void ***labels_wb) { if (run) { - assert(f->gpr && "trying to run a function that hasn't been compiled"); - assert(f->rtype == EJIT_VOID || ejit_int_type(f->rtype)); + assert(f->size && "trying to run a function that hasn't been compiled"); + /* void functions should use ejit_run_interp */ + assert(ejit_float_type(f->rtype)); if (f->arena) return ((ejit_escape_f_t)f->arena)(argc, args); } |