diff options
Diffstat (limited to 'py/emitnative.c')
-rw-r--r-- | py/emitnative.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/py/emitnative.c b/py/emitnative.c index 6e064fc4c3..1e1596ccc4 100644 --- a/py/emitnative.c +++ b/py/emitnative.c @@ -394,7 +394,7 @@ STATIC void emit_native_end_pass(emit_t *emit) { void *f = asm_thumb_get_code(emit->as); mp_uint_t f_len = asm_thumb_get_code_size(emit->as); #elif N_ARM - void *f = asm_arm_get_code(emit->as); + void *f = asm_arm_get_code(emit->as); mp_uint_t f_len = asm_arm_get_code_size(emit->as); #endif |