diff options
author | Damien George <damien.p.george@gmail.com> | 2014-05-07 18:30:52 +0100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-05-07 18:30:52 +0100 |
commit | a32c1e41cc28c5f7cd95191918cebd0e447a2fce (patch) | |
tree | cc6a7b0c47d4ad2e96c8142a73a6eaaf77f6fa34 /py/objint.c | |
parent | 36db6bcf54fd32a247c85719832a9cf43e124ab5 (diff) |
py: Improve native emitter; now supports more opcodes.
Diffstat (limited to 'py/objint.c')
-rw-r--r-- | py/objint.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/py/objint.c b/py/objint.c index dbc385c74..c8bcb6080 100644 --- a/py/objint.c +++ b/py/objint.c @@ -228,7 +228,7 @@ mp_obj_t mp_obj_int_binary_op(int op, mp_obj_t lhs_in, mp_obj_t rhs_in) { } // This is called only with strings whose value doesn't fit in SMALL_INT -mp_obj_t mp_obj_new_int_from_long_str(const char *s) { +mp_obj_t mp_obj_new_int_from_qstr(qstr qst) { nlr_raise(mp_obj_new_exception_msg(&mp_type_OverflowError, "long int not supported in this build")); return mp_const_none; } |