aboutsummaryrefslogtreecommitdiff
path: root/src/interp.c
diff options
context:
space:
mode:
authorKimplul <kimi.h.kuparinen@gmail.com>2024-06-28 01:23:48 +0300
committerKimplul <kimi.h.kuparinen@gmail.com>2024-06-28 01:23:48 +0300
commitd65c2461d26bf485b88276984bbc33054d5bce20 (patch)
tree3565b172adbc8fb84b1227a3f62dd9d610f564a4 /src/interp.c
parent8766bb1709e300011752fd1fa73f185f8331bee8 (diff)
downloadejit-d65c2461d26bf485b88276984bbc33054d5bce20.tar.gz
ejit-d65c2461d26bf485b88276984bbc33054d5bce20.zip
some posthaste fixes
+ Interesting that the comparison thing only failed when compiled with RELEASE=1
Diffstat (limited to 'src/interp.c')
-rw-r--r--src/interp.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/interp.c b/src/interp.c
index 4f034f7..9c3aea3 100644
--- a/src/interp.c
+++ b/src/interp.c
@@ -34,6 +34,8 @@ union interp_ret ejit_interp(struct ejit_func *f, size_t argc, struct ejit_arg a
[RET_F] = &&RET_F,
[RET_FI] = &&RET_FI,
+ [RETVAL] = &&RETVAL,
+
[ARG] = &&ARG,
[ARG_I] = &&ARG_I,
[ARG_F] = &&ARG_F,
@@ -158,6 +160,10 @@ union interp_ret ejit_interp(struct ejit_func *f, size_t argc, struct ejit_arg a
JUMP(i.r0);
DISPATCH();
+ DO(RETVAL);
+ gpr[i.r0] = retval;
+ DISPATCH();
+
DO(PARAM);
gpr[i.r2] = args[i.r0].l;
DISPATCH();