diff options
Diffstat (limited to 'py/emitcpy.c')
-rw-r--r-- | py/emitcpy.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/py/emitcpy.c b/py/emitcpy.c index 4ff99866a0..c0d15a8716 100644 --- a/py/emitcpy.c +++ b/py/emitcpy.c @@ -173,7 +173,7 @@ STATIC void emit_cpy_load_const_tok(emit_t *emit, mp_token_kind_t tok) { } } -STATIC void emit_cpy_load_const_small_int(emit_t *emit, machine_int_t arg) { +STATIC void emit_cpy_load_const_small_int(emit_t *emit, mp_int_t arg) { emit_pre(emit, 1, 3); if (emit->pass == MP_PASS_EMIT) { printf("LOAD_CONST " INT_FMT "\n", arg); |