Remove line in emitbc.c to print code size.

pull/3/head
Damien 2013-10-18 19:57:17 +01:00
rodzic 3997be444c
commit 7bbd110691
1 zmienionych plików z 0 dodań i 1 usunięć

Wyświetl plik

@ -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);