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 | |
parent | ce7f0573c400f57d5f7119fe24fc99c16e71401e (diff) | |
download | posthaste-034c1a30b860e17a1039f747d5ac8b015e5b279a.tar.gz posthaste-034c1a30b860e17a1039f747d5ac8b015e5b279a.zip |
m--------- | deps/ejit | 0 | ||||
-rw-r--r-- | src/lower.c | 4 |
2 files changed, 2 insertions, 2 deletions
diff --git a/deps/ejit b/deps/ejit -Subproject 2a2d096b61262c2059ea022379869b9c4a70eaf +Subproject b9372c7be73a7cad6d741f5323dc8b2b758198d 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; |