From fe3d9c7dfbe4190ecf0919abe474e4da4c019566 Mon Sep 17 00:00:00 2001 From: Kimplul Date: Mon, 24 Jun 2024 20:33:56 +0300 Subject: add initial compiler framework --- src/interp.c | 12 ------------ 1 file changed, 12 deletions(-) (limited to 'src/interp.c') diff --git a/src/interp.c b/src/interp.c index 4678aa1..bbf461b 100644 --- a/src/interp.c +++ b/src/interp.c @@ -176,15 +176,3 @@ out_float: free(fpr); return (union interp_ret){.d = retval_f}; } - -long ejit_run_func(struct ejit_func *f, size_t argc, struct ejit_arg args[argc]) -{ - assert(f->rtype == EJIT_VOID || ejit_int_type(f->rtype)); - return ejit_interp(f, argc, args, true, NULL).r; -} - -double ejit_run_func_f(struct ejit_func *f, size_t argc, struct ejit_arg args[argc]) -{ - assert(ejit_float_type(f->rtype)); - return ejit_interp(f, argc, args, true, NULL).d; -} -- cgit v1.2.3