From 25042b19d2310260e22d54ba09a124d5aaf4f512 Mon Sep 17 00:00:00 2001 From: Damien George Date: Sat, 11 Jan 2014 09:33:39 +0000 Subject: py: Make arg to MP_BC_RAISE_VARARGS a byte. --- py/emitbc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'py/emitbc.c') diff --git a/py/emitbc.c b/py/emitbc.c index c0ec2469a6..a00dfd0d96 100644 --- a/py/emitbc.c +++ b/py/emitbc.c @@ -672,9 +672,9 @@ static void emit_bc_return_value(emit_t *emit) { } static void emit_bc_raise_varargs(emit_t *emit, int n_args) { - assert(n_args >= 0); + assert(0 <= n_args && n_args <= 2); emit_pre(emit, -n_args); - emit_write_byte_1_uint(emit, MP_BC_RAISE_VARARGS, n_args); + emit_write_byte_1_byte(emit, MP_BC_RAISE_VARARGS, n_args); } static void emit_bc_yield_value(emit_t *emit) { -- cgit v1.2.3