summaryrefslogtreecommitdiff
path: root/py
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2019-02-25 14:52:36 +1100
committerDamien George <damien.p.george@gmail.com>2019-02-25 14:52:36 +1100
commit4ee2c2a4cd1914a06175919cc2fb6403ad668318 (patch)
tree1d4f0ef48206f958344bae11f96fd88fb652d976 /py
parent5801a003f055a9db6d569fbb0ffc3018dcaa8c3e (diff)
py: Eliminate warnings about unused arguments when debugging disabled.
Diffstat (limited to 'py')
-rw-r--r--py/compile.c2
-rw-r--r--py/emitnative.c1
-rw-r--r--py/modio.c2
3 files changed, 5 insertions, 0 deletions
diff --git a/py/compile.c b/py/compile.c
index 5b381e41d..4aaa68e6c 100644
--- a/py/compile.c
+++ b/py/compile.c
@@ -2776,6 +2776,8 @@ STATIC int compile_viper_type_annotation(compiler_t *comp, mp_parse_node_t pn_an
#endif
STATIC void compile_scope_func_lambda_param(compiler_t *comp, mp_parse_node_t pn, pn_kind_t pn_name, pn_kind_t pn_star, pn_kind_t pn_dbl_star) {
+ (void)pn_dbl_star;
+
// check that **kw is last
if ((comp->scope_cur->scope_flags & MP_SCOPE_FLAG_VARKEYWORDS) != 0) {
compile_syntax_error(comp, pn, "invalid syntax");
diff --git a/py/emitnative.c b/py/emitnative.c
index a198ffb08..8b7ebe530 100644
--- a/py/emitnative.c
+++ b/py/emitnative.c
@@ -2574,6 +2574,7 @@ STATIC void emit_native_return_value(emit_t *emit) {
}
STATIC void emit_native_raise_varargs(emit_t *emit, mp_uint_t n_args) {
+ (void)n_args;
assert(n_args == 1);
vtype_kind_t vtype_exc;
emit_pre_pop_reg(emit, &vtype_exc, REG_ARG_1); // arg1 = object to raise
diff --git a/py/modio.c b/py/modio.c
index b4d033238..0f4a4326c 100644
--- a/py/modio.c
+++ b/py/modio.c
@@ -147,6 +147,7 @@ STATIC mp_uint_t bufwriter_write(mp_obj_t self_in, const void *buf, mp_uint_t si
buf = (byte*)buf + rem;
size -= rem;
mp_uint_t out_sz = mp_stream_write_exactly(self->stream, self->buf, self->alloc, errcode);
+ (void)out_sz;
if (*errcode != 0) {
return MP_STREAM_ERROR;
}
@@ -165,6 +166,7 @@ STATIC mp_obj_t bufwriter_flush(mp_obj_t self_in) {
if (self->len != 0) {
int err;
mp_uint_t out_sz = mp_stream_write_exactly(self->stream, self->buf, self->len, &err);
+ (void)out_sz;
// TODO: try to recover from a case of non-blocking stream, e.g. move
// remaining chunk to the beginning of buffer.
assert(out_sz == self->len);