py/objfun: Fix variable name in DECODE_CODESTATE_SIZE() macro.

This patch fixes the macro so you can pass any name in, and the macro will
make more sense if you're reading it on its own.  It worked previously
because n_state is always passed in as n_state_out_var.
pull/3791/head
Tom Collins 2018-05-16 17:08:34 -07:00 zatwierdzone przez Damien George
rodzic 1b7487e519
commit a883fe12d9
1 zmienionych plików z 3 dodań i 2 usunięć

Wyświetl plik

@ -204,10 +204,11 @@ STATIC void dump_args(const mp_obj_t *a, size_t sz) {
n_state_out_var = mp_decode_uint_value(bytecode); \
size_t n_exc_stack = mp_decode_uint_value(mp_decode_uint_skip(bytecode)); \
\
n_state += VM_DETECT_STACK_OVERFLOW; \
n_state_out_var += VM_DETECT_STACK_OVERFLOW; \
\
/* state size in bytes */ \
state_size_out_var = n_state * sizeof(mp_obj_t) + n_exc_stack * sizeof(mp_exc_stack_t); \
state_size_out_var = n_state_out_var * sizeof(mp_obj_t) \
+ n_exc_stack * sizeof(mp_exc_stack_t); \
}
#define INIT_CODESTATE(code_state, _fun_bc, n_args, n_kw, args) \