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/compile/compile.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/compile/compile.c') diff --git a/src/compile/compile.c b/src/compile/compile.c index e651199..807ecc4 100644 --- a/src/compile/compile.c +++ b/src/compile/compile.c @@ -98,10 +98,10 @@ static void compile_addr(struct ejit_func *f, jit_state_t *j, struct ejit_insn i static void compile_bltr(struct ejit_func *f, jit_state_t *j, struct ejit_insn i, struct vec *relocs) { - jit_gpr_t c0 = getloc(f, j, i.r0, 0); - jit_gpr_t c1 = getloc(f, j, i.r1, 1); + jit_gpr_t c0 = getloc(f, j, i.r1, 0); + jit_gpr_t c1 = getloc(f, j, i.r2, 1); jit_reloc_t r = jit_bltr(j, c0, c1); - struct reloc_helper h = {.r = r, .to = i.o}; + struct reloc_helper h = {.r = r, .to = i.r0}; vect_append(struct reloc_helper, *relocs, &h); } -- cgit v1.2.3