From d4a799f152a4823fe15003f2db908801fb84533c Mon Sep 17 00:00:00 2001 From: Damien George Date: Mon, 15 Sep 2014 16:39:24 +0100 Subject: py: Make asm_arm_less_op take destination register as first arg. This gets ARM native emitter working againg and addresses issue #858. --- py/asmarm.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'py/asmarm.h') diff --git a/py/asmarm.h b/py/asmarm.h index 72ce03c54b..7942793a24 100644 --- a/py/asmarm.h +++ b/py/asmarm.h @@ -88,7 +88,7 @@ void asm_arm_mov_reg_local(asm_arm_t *as, uint rd, int local_num); void asm_arm_cmp_reg_i8(asm_arm_t *as, uint rd, int imm); void asm_arm_cmp_reg_reg(asm_arm_t *as, uint rd, uint rn); -void asm_arm_less_op(asm_arm_t *as, uint rd, uint rn); +void asm_arm_less_op(asm_arm_t *as, uint rd, uint rn, uint rm); void asm_arm_add_reg(asm_arm_t *as, uint rd, uint rn, uint rm); void asm_arm_mov_reg_local_addr(asm_arm_t *as, uint rd, int local_num); -- cgit v1.2.3