From 3439c3619753955b6368fc91acec3e14c76c6dd3 Mon Sep 17 00:00:00 2001 From: Thea Flowers Date: Tue, 5 Nov 2019 17:49:47 -0800 Subject: [PATCH] Fix bad call to mp_arg_check_num --- py/objfun.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/py/objfun.c b/py/objfun.c index fd55e532ab..7e58994563 100644 --- a/py/objfun.c +++ b/py/objfun.c @@ -546,9 +546,7 @@ STATIC mp_uint_t convert_obj_for_inline_asm(mp_obj_t obj) { STATIC mp_obj_t fun_asm_call(mp_obj_t self_in, size_t n_args, size_t n_kw, const mp_obj_t *args) { mp_obj_fun_asm_t *self = self_in; - #pragma GCC diagnostic ignored "-Wint-conversion" - mp_arg_check_num(n_args, n_kw, self->n_args, self->n_args, false); - #pragma GCC diagnostic pop + mp_arg_check_num_kw_array(n_args, n_kw, self->n_args, self->n_args, false); void *fun = MICROPY_MAKE_POINTER_CALLABLE(self->fun_data);