aboutsummaryrefslogtreecommitdiff
path: root/py/asmxtensa.h
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2018-09-27 23:35:43 +1000
committerDamien George <damien.p.george@gmail.com>2018-09-27 23:39:08 +1000
commit2e862332630e2838d06b293f35fdd76ab7c9d714 (patch)
treee97686acd707fe312887dfb61fc8e997a90c8831 /py/asmxtensa.h
parent7d4b6cc868ebf0e1cc5dfe5276b22e1b857c411b (diff)
py/asm*: Remove ASM_MOV_REG_ALIGNED_IMM emit macro, it's no longer used.
After the previous commit this macro is no longer needed by the native emitter because live heap pointers are no longer stored in generated native machine code.
Diffstat (limited to 'py/asmxtensa.h')
-rw-r--r--py/asmxtensa.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/py/asmxtensa.h b/py/asmxtensa.h
index ad39f421c..07c3aa819 100644
--- a/py/asmxtensa.h
+++ b/py/asmxtensa.h
@@ -285,7 +285,6 @@ void asm_xtensa_call_ind(asm_xtensa_t *as, uint idx);
#define ASM_MOV_LOCAL_REG(as, local_num, reg_src) asm_xtensa_mov_local_reg((as), (local_num), (reg_src))
#define ASM_MOV_REG_IMM(as, reg_dest, imm) asm_xtensa_mov_reg_i32((as), (reg_dest), (imm))
-#define ASM_MOV_REG_ALIGNED_IMM(as, reg_dest, imm) asm_xtensa_mov_reg_i32((as), (reg_dest), (imm))
#define ASM_MOV_REG_LOCAL(as, reg_dest, local_num) asm_xtensa_mov_reg_local((as), (reg_dest), (local_num))
#define ASM_MOV_REG_REG(as, reg_dest, reg_src) asm_xtensa_op_mov_n((as), (reg_dest), (reg_src))
#define ASM_MOV_REG_LOCAL_ADDR(as, reg_dest, local_num) asm_xtensa_mov_reg_local_addr((as), (reg_dest), (local_num))