Skip to content

Commit

Permalink
py/emitnx86: Fix number of args passed to mp_setup_code_state, 4 not 5.
Browse files Browse the repository at this point in the history
  • Loading branch information
dpgeorge committed Aug 17, 2018
1 parent 794c321 commit 4f9842a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion py/emitnx86.c
Expand Up @@ -59,7 +59,7 @@ STATIC byte mp_f_n_args[MP_F_NUMBER_OF] = {
[MP_F_DELETE_GLOBAL] = 1,
[MP_F_NEW_CELL] = 1,
[MP_F_MAKE_CLOSURE_FROM_RAW_CODE] = 3,
[MP_F_SETUP_CODE_STATE] = 5,
[MP_F_SETUP_CODE_STATE] = 4,
[MP_F_SMALL_INT_FLOOR_DIVIDE] = 2,
[MP_F_SMALL_INT_MODULO] = 2,
};
Expand Down

0 comments on commit 4f9842a

Please sign in to comment.