diff options
Diffstat (limited to 'py/compile.c')
-rw-r--r-- | py/compile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/py/compile.c b/py/compile.c index c895b26fa9..ef0130463d 100644 --- a/py/compile.c +++ b/py/compile.c @@ -117,7 +117,7 @@ mp_parse_node_t fold_constants(mp_parse_node_t pn) { assert(0); res = 0; } - if (MP_FIT_SMALL_INT(res)) { + if (MP_PARSE_FITS_SMALL_INT(res)) { pn = mp_parse_node_new_leaf(MP_PARSE_NODE_SMALL_INT, res); } } |