aboutsummaryrefslogtreecommitdiff
path: root/py/asmarm.h
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2014-09-15 16:39:24 +0100
committerDamien George <damien.p.george@gmail.com>2014-09-15 16:39:24 +0100
commitd4a799f152a4823fe15003f2db908801fb84533c (patch)
tree754515e452e9c215dc6de5718be78eafe7ed209c /py/asmarm.h
parentb92cbe612913a7c9d066c34912a3f77fe6392b2b (diff)
py: Make asm_arm_less_op take destination register as first arg.
This gets ARM native emitter working againg and addresses issue #858.
Diffstat (limited to 'py/asmarm.h')
-rw-r--r--py/asmarm.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/py/asmarm.h b/py/asmarm.h
index 72ce03c54..7942793a2 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);