diff options
Diffstat (limited to 'py/bc.h')
-rw-r--r-- | py/bc.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -53,8 +53,8 @@ mp_uint_t mp_decode_uint(const byte **ptr); mp_vm_return_kind_t mp_execute_bytecode(mp_code_state *code_state, volatile mp_obj_t inject_exc); void mp_setup_code_state(mp_code_state *code_state, mp_obj_t self_in, mp_uint_t n_args, mp_uint_t n_kw, const mp_obj_t *args); -void mp_bytecode_print(const void *descr, const byte *code, int len); -void mp_bytecode_print2(const byte *code, int len); +void mp_bytecode_print(const void *descr, const byte *code, mp_uint_t len); +void mp_bytecode_print2(const byte *code, mp_uint_t len); // Helper macros to access pointer with least significant bit holding a flag #define MP_TAGPTR_PTR(x) ((void*)((mp_uint_t)(x) & ~((mp_uint_t)1))) |