diff options
author | Kimplul <kimi.h.kuparinen@gmail.com> | 2024-06-25 22:23:23 +0300 |
---|---|---|
committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2024-06-25 22:23:23 +0300 |
commit | a0a2a92107cb2ef43b9dab7f1f0bf4e3487436f5 (patch) | |
tree | 81cfdfbf6e17c99229d87f7881a56c3a4b241b1c /src/compile/compile.c | |
parent | 8f44960246c39845df83464ea9b4bc59220265aa (diff) | |
download | ejit-a0a2a92107cb2ef43b9dab7f1f0bf4e3487436f5.tar.gz ejit-a0a2a92107cb2ef43b9dab7f1f0bf4e3487436f5.zip |
move branches to have the dest in r0
Diffstat (limited to 'src/compile/compile.c')
-rw-r--r-- | src/compile/compile.c | 6 |
1 files changed, 3 insertions, 3 deletions
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); } |