aboutsummaryrefslogtreecommitdiff
path: root/src/compile
diff options
context:
space:
mode:
Diffstat (limited to 'src/compile')
-rw-r--r--src/compile/compile.c6
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);
}