summaryrefslogtreecommitdiff
path: root/py/emitnx86.c
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2018-08-17 15:03:51 +1000
committerDamien George <damien.p.george@gmail.com>2018-08-17 15:03:51 +1000
commit4f9842ad80c235188955fd83317f715033a596c0 (patch)
treecd2297300cb0249627423ec7804c2d83bca18f6d /py/emitnx86.c
parent794c32102e63f09642a9f32017834673bbe4e32d (diff)
py/emitnx86: Fix number of args passed to mp_setup_code_state, 4 not 5.
Diffstat (limited to 'py/emitnx86.c')
-rw-r--r--py/emitnx86.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/py/emitnx86.c b/py/emitnx86.c
index 4c192069d..e94634d27 100644
--- a/py/emitnx86.c
+++ b/py/emitnx86.c
@@ -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,
};