diff options
| author | Kimplul <kimi.h.kuparinen@gmail.com> | 2025-05-17 13:45:08 +0300 | 
|---|---|---|
| committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2025-05-17 13:45:08 +0300 | 
| commit | 034c1a30b860e17a1039f747d5ac8b015e5b279a (patch) | |
| tree | dce40f00e64cf2a70f70675ad0a62179bd710b27 /src | |
| parent | ce7f0573c400f57d5f7119fe24fc99c16e71401e (diff) | |
| download | posthaste-034c1a30b860e17a1039f747d5ac8b015e5b279a.tar.gz posthaste-034c1a30b860e17a1039f747d5ac8b015e5b279a.zip | |
bump ejit
Diffstat (limited to 'src')
| -rw-r--r-- | src/lower.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/src/lower.c b/src/lower.c index e5e360e..7b2335c 100644 --- a/src/lower.c +++ b/src/lower.c @@ -567,7 +567,7 @@ static void lower_proc_call(struct fn *f, struct ast *c)  	struct fn *target = vec_at(&fns, def->l.s);  	assert(target); -	ejit_calli_l(f->f, target->f, count, args); +	ejit_calli(f->f, target->f, count, args);  	f->sp -= count; @@ -594,7 +594,7 @@ static void lower_func_call(struct fn *f, struct ast *c)  	struct fn *target = vec_at(&fns, def->l.s);  	assert(target); -	ejit_calli_l(f->f, target->f, count, args); +	ejit_calli(f->f, target->f, count, args);  	f->sp -= count; | 
