From 7bbd1106915b481816fe5baa72ce7c6068c7386a Mon Sep 17 00:00:00 2001 From: Damien Date: Fri, 18 Oct 2013 19:57:17 +0100 Subject: [PATCH] Remove line in emitbc.c to print code size. --- py/emitbc.c | 1 - 1 file changed, 1 deletion(-) diff --git a/py/emitbc.c b/py/emitbc.c index 06c52a0dc1..dbd9c3bb93 100644 --- a/py/emitbc.c +++ b/py/emitbc.c @@ -73,7 +73,6 @@ static void emit_bc_end_pass(emit_t *emit) { // calculate size of code in bytes emit->code_size = emit->code_offset; emit->code_base = m_new(byte, emit->code_size); - printf("code_size: %u\n", emit->code_size); } else if (emit->pass == PASS_3) { rt_assign_byte_code(emit->scope->unique_code_id, emit->code_base, emit->code_size, emit->scope->num_params, emit->scope->num_locals, emit->scope->stack_size, (emit->scope->flags & SCOPE_FLAG_GENERATOR) != 0);