diff options
author | Damien George <damien.p.george@gmail.com> | 2014-05-28 14:51:12 +0100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-05-28 14:51:12 +0100 |
commit | d1e355ea8e2a5a17ee126f5c3d173b2e6f33e460 (patch) | |
tree | d5ba59452f72a9dcc31fc6cdcf0ad8c08c8713b2 /py/runtime.c | |
parent | 813ed3bda6818bd8dd15ee5e3c673a24321e740b (diff) |
py: Fix check of small-int overflow when parsing ints.
Also unifies use of SMALL_INT_FITS macro across parser and runtime.
Diffstat (limited to 'py/runtime.c')
-rw-r--r-- | py/runtime.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/py/runtime.c b/py/runtime.c index f48780725..a9d57460a 100644 --- a/py/runtime.c +++ b/py/runtime.c @@ -413,7 +413,7 @@ mp_obj_t mp_binary_op(int op, mp_obj_t lhs, mp_obj_t rhs) { goto unsupported_op; } // TODO: We just should make mp_obj_new_int() inline and use that - if (MP_OBJ_FITS_SMALL_INT(lhs_val)) { + if (MP_SMALL_INT_FITS(lhs_val)) { return MP_OBJ_NEW_SMALL_INT(lhs_val); } else { return mp_obj_new_int(lhs_val); |