aboutsummaryrefslogtreecommitdiff
path: root/src/lower.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lower.c')
-rw-r--r--src/lower.c4
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;