aboutsummaryrefslogtreecommitdiff
path: root/src/interp.c
diff options
context:
space:
mode:
authorKimplul <kimi.h.kuparinen@gmail.com>2024-06-25 22:23:23 +0300
committerKimplul <kimi.h.kuparinen@gmail.com>2024-06-25 22:23:23 +0300
commita0a2a92107cb2ef43b9dab7f1f0bf4e3487436f5 (patch)
tree81cfdfbf6e17c99229d87f7881a56c3a4b241b1c /src/interp.c
parent8f44960246c39845df83464ea9b4bc59220265aa (diff)
downloadejit-a0a2a92107cb2ef43b9dab7f1f0bf4e3487436f5.tar.gz
ejit-a0a2a92107cb2ef43b9dab7f1f0bf4e3487436f5.zip
move branches to have the dest in r0
Diffstat (limited to 'src/interp.c')
-rw-r--r--src/interp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interp.c b/src/interp.c
index bbf461b..158606b 100644
--- a/src/interp.c
+++ b/src/interp.c
@@ -93,8 +93,8 @@ union interp_ret ejit_interp(struct ejit_func *f, size_t argc, struct ejit_arg a
DISPATCH();
DO(bltr);
- if (gpr[i.r0] < gpr[i.r1])
- JUMP(i.o);
+ if (gpr[i.r1] < gpr[i.r2])
+ JUMP(i.r0);
DISPATCH();