diff options
Diffstat (limited to 'py/objint_longlong.c')
-rw-r--r-- | py/objint_longlong.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/py/objint_longlong.c b/py/objint_longlong.c index 24435415fb..7dc0573bc6 100644 --- a/py/objint_longlong.c +++ b/py/objint_longlong.c @@ -106,8 +106,6 @@ mp_obj_t mp_obj_int_binary_op(int op, mp_obj_t lhs_in, mp_obj_t rhs_in) { return MP_BOOL(lhs_val >= rhs_val); case MP_BINARY_OP_EQUAL: return MP_BOOL(lhs_val == rhs_val); - case MP_BINARY_OP_NOT_EQUAL: - return MP_BOOL(lhs_val != rhs_val); default: // op not supported |