py: Make asm_arm_less_op take destination register as first arg.

This gets ARM native emitter working againg and addresses issue #858.
This commit is contained in:
Damien George
2014-09-15 16:39:24 +01:00
parent b92cbe6129
commit d4a799f152
3 changed files with 6 additions and 6 deletions

View File

@@ -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);