summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--py/runtime.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/py/runtime.c b/py/runtime.c
index 3a613eaf23..bbd12895af 100644
--- a/py/runtime.c
+++ b/py/runtime.c
@@ -551,6 +551,8 @@ mp_obj_t rt_binary_op(int op, mp_obj_t lhs, mp_obj_t rhs) {
return mp_const_false;
}
}
+ assert(0);
+ return mp_const_false;
}
if (MP_OBJ_IS_SMALL_INT(lhs)) {