From a0a2a92107cb2ef43b9dab7f1f0bf4e3487436f5 Mon Sep 17 00:00:00 2001 From: Kimplul Date: Tue, 25 Jun 2024 22:23:23 +0300 Subject: move branches to have the dest in r0 --- src/interp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/interp.c') 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(); -- cgit v1.2.3