From dd53b12193dca4800ab207170fcc883142dd0f22 Mon Sep 17 00:00:00 2001 From: Damien George Date: Fri, 9 Dec 2016 20:54:54 +1100 Subject: py/emitinline: Move inline-asm align and data methods to compiler. These are generic methods that don't depend on the architecture and so can be handled directly by the compiler. --- py/emit.h | 2 -- 1 file changed, 2 deletions(-) (limited to 'py/emit.h') diff --git a/py/emit.h b/py/emit.h index 6080b83c4..41cb2162d 100644 --- a/py/emit.h +++ b/py/emit.h @@ -266,8 +266,6 @@ typedef struct _emit_inline_asm_method_table_t { void (*end_pass)(emit_inline_asm_t *emit, mp_uint_t type_sig); mp_uint_t (*count_params)(emit_inline_asm_t *emit, mp_uint_t n_params, mp_parse_node_t *pn_params); bool (*label)(emit_inline_asm_t *emit, mp_uint_t label_num, qstr label_id); - void (*align)(emit_inline_asm_t *emit, mp_uint_t align); - void (*data)(emit_inline_asm_t *emit, mp_uint_t bytesize, mp_uint_t val); void (*op)(emit_inline_asm_t *emit, qstr op, mp_uint_t n_args, mp_parse_node_t *pn_args); } emit_inline_asm_method_table_t; -- cgit v1.2.3