@@ -92,7 +92,7 @@ typedef enum {
92
92
#define NATIVE_EMITTER (f ) emit_native_table[mp_dynamic_compiler.native_arch]->emit_##f
93
93
#define NATIVE_EMITTER_TABLE emit_native_table[mp_dynamic_compiler.native_arch]
94
94
95
- STATIC const emit_method_table_t * emit_native_table [] = {
95
+ STATIC const emit_method_table_t * emit_native_table [] = {
96
96
NULL ,
97
97
& emit_native_x86_method_table ,
98
98
& emit_native_x64_method_table ,
@@ -131,7 +131,7 @@ STATIC const emit_method_table_t * emit_native_table[] = {
131
131
#define ASM_EMITTER (f ) emit_asm_table[mp_dynamic_compiler.native_arch]->asm_##f
132
132
#define ASM_EMITTER_TABLE emit_asm_table[mp_dynamic_compiler.native_arch]
133
133
134
- STATIC const emit_inline_asm_method_table_t * emit_asm_table [] = {
134
+ STATIC const emit_inline_asm_method_table_t * emit_asm_table [] = {
135
135
NULL ,
136
136
NULL ,
137
137
NULL ,
@@ -3527,7 +3527,7 @@ mp_raw_code_t *mp_compile_to_raw_code(mp_parse_tree_t *parse_tree, qstr source_f
3527
3527
3528
3528
switch (s -> emit_options ) {
3529
3529
3530
- #if MICROPY_EMIT_NATIVE
3530
+ #if MICROPY_EMIT_NATIVE
3531
3531
case MP_EMIT_OPT_NATIVE_PYTHON :
3532
3532
case MP_EMIT_OPT_VIPER :
3533
3533
if (emit_native == NULL ) {
@@ -3536,7 +3536,7 @@ mp_raw_code_t *mp_compile_to_raw_code(mp_parse_tree_t *parse_tree, qstr source_f
3536
3536
comp -> emit_method_table = NATIVE_EMITTER_TABLE ;
3537
3537
comp -> emit = emit_native ;
3538
3538
break ;
3539
- #endif // MICROPY_EMIT_NATIVE
3539
+ #endif // MICROPY_EMIT_NATIVE
3540
3540
3541
3541
default :
3542
3542
comp -> emit = emit_bc ;
0 commit comments