Skip to content

Commit 7bbd110

Browse files
committed
Remove line in emitbc.c to print code size.
1 parent 3997be4 commit 7bbd110

1 file changed

Lines changed: 0 additions & 1 deletion

File tree

py/emitbc.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,6 @@ static void emit_bc_end_pass(emit_t *emit) {
7373
// calculate size of code in bytes
7474
emit->code_size = emit->code_offset;
7575
emit->code_base = m_new(byte, emit->code_size);
76-
printf("code_size: %u\n", emit->code_size);
7776

7877
} else if (emit->pass == PASS_3) {
7978
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

Comments
 (0)