diff options
author | Damien George <damien.p.george@gmail.com> | 2015-04-01 23:31:30 +0100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2015-04-02 22:56:58 +0100 |
commit | 12a5e17afb6a59d1eb0e1ce0444d7e4891f6391b (patch) | |
tree | 9a78cc4a98534d492f07c6c57cf9fcaa7e194c14 /py/vm.c | |
parent | dbc0191d5f1cf51bdf628800ae24a70392be673f (diff) | |
download | micropython-12a5e17afb6a59d1eb0e1ce0444d7e4891f6391b.tar.gz micropython-12a5e17afb6a59d1eb0e1ce0444d7e4891f6391b.zip |
py: Add finer configuration of static funcs when not in stackless mode.
Also rename call_args_t to mp_call_args_t.
Diffstat (limited to 'py/vm.c')
-rw-r--r-- | py/vm.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -906,7 +906,7 @@ unwind_jump:; code_state->sp = sp; code_state->exc_sp = MP_TAGPTR_MAKE(exc_sp, currently_in_except_block); - call_args_t out_args; + mp_call_args_t out_args; mp_call_prepare_args_n_kw_var(false, unum, sp, &out_args); mp_code_state *new_state = mp_obj_fun_bc_prepare_codestate(out_args.fun, @@ -977,7 +977,7 @@ unwind_jump:; code_state->sp = sp; code_state->exc_sp = MP_TAGPTR_MAKE(exc_sp, currently_in_except_block); - call_args_t out_args; + mp_call_args_t out_args; mp_call_prepare_args_n_kw_var(true, unum, sp, &out_args); mp_code_state *new_state = mp_obj_fun_bc_prepare_codestate(out_args.fun, |