summaryrefslogtreecommitdiffstatshomepage
path: root/py
diff options
context:
space:
mode:
authorDamien <damien.p.george@gmail.com>2013-10-18 19:57:17 +0100
committerDamien <damien.p.george@gmail.com>2013-10-18 19:57:17 +0100
commit7bbd1106915b481816fe5baa72ce7c6068c7386a (patch)
treefcce04008e35502e39b23bd0b65150e2b34a88bb /py
parent3997be444c83abfc4fd146f35cfcc97765e3ce30 (diff)
downloadmicropython-7bbd1106915b481816fe5baa72ce7c6068c7386a.tar.gz
micropython-7bbd1106915b481816fe5baa72ce7c6068c7386a.zip
Remove line in emitbc.c to print code size.
Diffstat (limited to 'py')
-rw-r--r--py/emitbc.c1
1 files changed, 0 insertions, 1 deletions
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);