1 parent 3997be4 commit 7bbd110Copy full SHA for 7bbd110
1 file changed
py/emitbc.c
@@ -73,7 +73,6 @@ static void emit_bc_end_pass(emit_t *emit) {
73
// calculate size of code in bytes
74
emit->code_size = emit->code_offset;
75
emit->code_base = m_new(byte, emit->code_size);
76
- printf("code_size: %u\n", emit->code_size);
77
78
} else if (emit->pass == PASS_3) {
79
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);
0 commit comments