diff options
author | Damien George <damien.p.george@gmail.com> | 2018-10-13 15:13:55 +1100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2018-10-13 15:16:33 +1100 |
commit | 6bda951d4d71e4a18a7f30c032b70d143c5506cf (patch) | |
tree | 259e2450de2bfeabc744f6b17de74a9cc0d085e1 /py/asmthumb.h | |
parent | 25571800fcd8e6b660c838092b339b496623d2be (diff) |
py/emitnative: Remove unused ptr argument from ASM_CALL_IND macro.
Diffstat (limited to 'py/asmthumb.h')
-rw-r--r-- | py/asmthumb.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/py/asmthumb.h b/py/asmthumb.h index 8db350fd0..9a44a78ca 100644 --- a/py/asmthumb.h +++ b/py/asmthumb.h @@ -311,7 +311,7 @@ void asm_thumb_bl_ind(asm_thumb_t *as, uint fun_id, uint reg_temp); // convenien asm_thumb_bcc_label(as, ASM_THUMB_CC_EQ, label); \ } while (0) #define ASM_JUMP_REG(as, reg) asm_thumb_bx_reg((as), (reg)) -#define ASM_CALL_IND(as, ptr, idx) asm_thumb_bl_ind(as, idx, ASM_THUMB_REG_R3) +#define ASM_CALL_IND(as, idx) asm_thumb_bl_ind(as, idx, ASM_THUMB_REG_R3) #define ASM_MOV_LOCAL_REG(as, local_num, reg) asm_thumb_mov_local_reg((as), (local_num), (reg)) #define ASM_MOV_REG_IMM(as, reg_dest, imm) asm_thumb_mov_reg_i32_optimised((as), (reg_dest), (imm)) |